fatal: remote origin already exists.
如果輸入:
$ git remote add origin git@github.com:tangxiansong(github帳號名)/gitdemo(項目名).git
提示出錯信息:fatal: remote origin already exists.
解決辦法如下:
1驰唬、先輸入$ git remote rm origin
2斋竞、再輸入$ git remote add origin git@github.com:tangxiansong/gitdemo.git 就不會報錯了院究!
3、如果輸入$ git remote rm origin 還是報錯的話轴术,error: Could not remove config section 'remote.origin'. 我們需要修改gitconfig文件的內容
4、找到你的github的安裝路徑
5光坝、找到一個名為gitconfig的文件肴熏,打開它把里面的remote "origin"那一行
刪掉就好了!
Permission denied (publickey)
如果輸入:
$ ssh -T git@github.com
出現(xiàn)錯誤提示:Permission denied (publickey).因為新生成的key不能加入ssh就會導致連接不上github硝皂。
解決辦法如下:
1常挚、先輸入 ssh-add ~/.ssh/id_key稽物,這樣就可以了奄毡。
2、如果還是不行的話贝或,輸入ssh-add ~/.ssh/id_key 命令后出現(xiàn)報錯Could not open a connection to your authentication agent.解決方法是key用Git Gui的ssh工具生成吼过,這樣生成的時候key就直接保存在ssh中了,不需要再ssh-add命令加入了咪奖,其它的user盗忱,token等配置都用命令行來做。
3羊赵、最好檢查一下在你復制id_rsa.pub文件的內容時有沒有產(chǎn)生多余的空格或空行趟佃,有些編輯器會幫你添加這些的。
error:failed to push som refs to .......
如果輸入:
$ git push origin master
提示出錯信息:error:failed to push som refs to .......
解決辦法如下:
1、先輸入$ git pull origin master //先把遠程服務器github上面的文件拉下來
2揖闸、再輸入$ git push origin master
3揍堕、如果出現(xiàn)報錯 fatal: Couldn't find remote ref master或者fatal: 'origin' does not appear to be a git repository以及fatal: Could not read from remote repository.
4、則需要重新輸入$ git remote add origingit@github.com:tangxiansong/gitdemo.git
獲取幫助(Getting help)
如果當你在使用Git時需要幫助汤纸,有三種方法可以獲得任何git命令的手冊頁(manpage)幫助信息:
git <verb> --help
$ man git-<verb>
例如衩茸,你可以運行如下命令獲取對config命令的手冊頁幫助:
$ git help config