1. 程式人生 > >git clone之後再去git push遇到的問題(The current branch master has no upstream branch)和(you can't push to...)

git clone之後再去git push遇到的問題(The current branch master has no upstream branch)和(you can't push to...)

   目前正在做一個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 push 成功,(所有命令都是在master分支下操作)

​​​​​​​