1. 程式人生 > >【已解決】 git本地不能push到github上

【已解決】 git本地不能push到github上

Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.

hint: See the 'Note about fast-forwards' in 'git push --help' for details.

以上為報錯資訊

根本 原因是分支衝突導致的

第一步

先將你的本地倉庫和遠端倉庫連線起來

建立了一個origin遠端倉庫

git remote add origin [email protected]:[yourname]/xxx.git

第二步

將你 的網路上的檔案更新到本地,一定要有READEME.md檔案

git pull 

第三步

建立一個新的分支abc

git branch abc

第四步

更新即可

git push -u origin abc

第五步 在專案介面檢視新的pull即可,然後選擇是否合併到master上

這幾步的前提是你修改好了並提交了檔案,這些操作應該是在你的新建分支abc下完成的

git add xxx.md
git commit xxx.md

檢視分支

git branch
帶*號的就是你當前的分支