git提交代碼到github遇到的問題。

(2)問題一: 當你想創建本地與遠程倉庫的鏈接,輸入命令: git remote add origin git@github.com:XXX.git 會報錯:fatal: remote origin already exists.git

解決方法: 一、先輸入 git remote rm origin 二、再輸入 git remote add origin 解決~~~github

(2)問題: 當你推送代碼到遠程倉庫時,輸入命令:git push -u origin master 會報錯:1 error:src refspec master does not match anyrem

解決方法: 首先,輸入命令:touch README 而後,依次輸入命令: git add README git commit -m 'first commit' git push origin master 解決~~~get

(3)問題 當你想代碼推送到遠程倉庫時,輸入命令:git push 會報錯:fatal: The current branch master has no upstream branch.it

緣由:沒有將本地的分支與【遠程倉庫的分支】進行關聯 經過git branch查看本地分支只有master。 經過git branch -a查看遠程分支,有master和remotes/origin/master兩個。 當遠程倉庫太多,且分支較多的時候,git就會產生疑問,由於它沒法判斷你的push目標。ast

解決方法一:使用命令:git push --set-upstream origin master 解決方法二:使用命令:git push -u origin masterstream

相關文章
相關標籤/搜索