環境:ubuntu 16.04
使用git經常會遇到奇奇怪怪的問題,現將我遇到的一些問題彙總如下,不定期更新。
提示資訊:
error: 無法推送一些引用到 '[email protected]:******'
解決方案:
執行以下**,強制更新
git push -u origin +master提示資訊
password for https://******解決方案
因為關聯遠端庫的時候,選擇的是https協議,換成ssh方式就不會出現這個問題了,具體**如下:
git remote rm origin
git remote add origin [email protected]:******
git push -u origin master
[email protected]:******
就是你的倉庫位址
第一次提交會出現驗證的警告,輸入yes回車就行
提示資訊
有時候本地的資料夾名字改了,push之後,github上會出現新舊兩個資料夾,這時候需要把github上的舊資料夾刪除
解決方案
需要使用git rm
命令,具體**如下:
git rm -r
--cached "舊資料夾名"
git commit -m
"刪除舊資料夾"
git push origin master
git常見問題
如果輸入 git remote add origin git github.com djqiang github帳號名 gitdemo 專案名 git 提示出錯資訊 fatal remote origin already exists.解決辦法如下 1 先輸入 git remote rm origi...
git 常見問題
1.正常做專案 2.別人打了comment,自己需要打patch fix comment issue git add git rm filepath git commit amend change commit msg if necessary git push u origin your dev ...
git常見問題
使用git遇到的一些問題 1.當切換到一次commit或遠端分支時,會出現detached head 分離頭指標 的情況,即head不指向任何乙個分支。在detached head上面做修改提交並切換分支後,detached head消失,因此會失去剛才的提交。解決辦法 再切換分支後會提示說明當前h...