git clone之後再去git push遇到的問題(The current branch master has no upstream branch)和(you can't push to...)
阿新 • • 發佈:2019-01-22
目前正在做一個Laravel的專案,考慮到以後的團隊合作,所以就用git clone git://github.com/dengao123/sample.git類似的命令獲取了遠端的倉庫程式碼,但是當我用git push提交程式碼時確遇到了2問題。
1. 第一次提交時
- you can't push to git://github.com/dengao123/sample.git
- use https://github.com/dengao123/sample.git
原因是因為,我是用clone命令下載的程式碼,沒有寫的許可權,只有讀的許可權,解決方法:
- git remote rm origin
- git remote add origin [email protected]:dengao123/sample.git
2. 解決完上個問題後再一次提交時
- fatal: The current branch master has no upstream branch.
- To push the current branch and set the remote as upstream, use
- git push --set-upstream origin master
原因是因為,沒有將我clone下來的程式碼分支沒有與遠端的程式碼分支進行關聯,解決方法
- git remote -v 檢視遠端程式碼倉庫,顯示
-
origin [email protected]:dengao123/sample.git (fetch)
origin [email protected]:dengao123/sample.git (push) -
然後執行命令
-
git push --set-upstream [email protected]:dengao123/sample.git master
再次執行git push 成功,(所有命令都是在master分支下操作)