Git部署遠程倉庫至github

本地部署

本地文件部署到github

  • 設置username和email
git config --global user.name "your name" 
git config --global user.email "your_email@youremail.com"

從github上克隆項目再同步到github

git clone URL
  • 記得clone帶.git的文件

添加遠程倉庫

git remote add origin git@github.com:yourName/yourRepo.git

orgit

git remote add upstream git@github.com:yourName/yourRepo.git
  • 若是出現 fatal: remote origin already exists.
    • git clone 時會在本地建立一個 origin 倉庫
    • 能夠刪除原來的origin倉庫github

      git remote rm origin
    • 也能夠建立一個其餘名稱的遠程倉庫
    • 例如bash

      git remote add origin1 git@github.com:yourName/yourRepo.git
相關文章
相關標籤/搜索