2
A
回答
2
你只是刪除遠程引用
git push origin :my_branch
或與當前語法
git push --delete origin mybranch
您還可以從本地回購與
git remote prune origin
修剪本地跟蹤分行
或按照下面評論中的蛋糕建議,
git fetch -p
相關問題
- 1. git push -u origin master no
- 2. 撤消git push mirror
- 3. 如何撤消git push或將origin/mybranch移動到上一步?
- 4. 如何撤消git pull或git push?
- 5. 撤消'git push'的問題
- 6. 撤消git push到Assembla
- 7. 撤消github上的git push
- 8. `git push -u origin master`中`-u`的用法是什麼?
- 9. 'git push -u origin master'中'-u'的含義是什麼?
- 10. git push origin master failed
- 11. git push origin master failed
- 12. git push origin在總消息後掛起
- 13. 如何撤消服務器上git的「git pull origin」命令?
- 14. 撤消git add和git commit以及一種git push原點
- 15. git push origin和git push origin master之間的區別
- 16. git push -f origin master和git push origin master之間的區別--force?
- 17. 如何讓'git push'像'git push origin branch'一樣工作?
- 18. Git push -u origin master在存儲庫重命名後不工作
- 19. Gitlab push origin master
- 20. 'git push origin master'凍結
- 21. 「git push origin master」凍結
- 22. 如何在git中「撤消撤消」?
- 23. 如何結合git checkout -b和git push origin?
- 24. 如何撤消在git中推回復?
- 25. git push會發生什麼-u my_url master
- 26. 當-u開關添加到git-push?
- 27. git push to origin錯誤git-http-push死於信號11
- 28. 「git push」和「git push origin master」有什麼區別?
- 29. 如何撤消Git回滾
- 30. Git:如何「撤消」合併
現在用'git fetch -p'修剪遠程跟蹤分支是比較典型的,但是這個答案是正確的。 – 2013-08-20 17:41:58