github—本地建立與遠端倉庫的聯絡以及程式碼上傳與合併
阿新 • • 發佈:2019-02-10
一.註冊github
首先需要註冊github 並將本地生成的SSH keys放到github上setting裡的SSH and GPG keys 裡面去
二.clone到本地並建立關聯
git clone https://github.com/myusername/ExperimentalPlatformOfIOS
cd ExperimentalPlatformOfIOS #進入本地庫
git remote add upstream https://github.com/wangyang-bupt/ExperimentalPlatformOfIOS #增加關聯
git fetch upstream #為名為Upstream的關聯抓取程式碼
三.修改並上傳程式碼
git add . #新增修改到stage
git commit -a -m 'Update README' #為stage中的內容新增commit,引號內容為註釋
git push origin master #上傳程式碼到遠端個人倉庫
git fetch upstream #抓取最新程式碼
git merge upstream/master #本地合併最新程式碼
四.Pull Request上傳到原始碼倉庫
進入自己的分支庫,點選Pull Request按鈕,進入傳送Pull Request介面,填寫完相關資訊之後,點選”Send Pull Request”按鈕,等待稽核。