Git修剪远程和本地分支

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git修剪远程和本地分支相关的知识,希望对你有一定的参考价值。

http://yuji.wordpress.com/2010/06/11/git-delete-remote-branch/
  1. # see what's out there
  2. git remote show origin
  3.  
  4. # remove the remote branch 'branch-name'
  5. git push origin :branch-name
  6.  
  7. # see what branches are only on local and no longer tracked
  8. git remote prune origin --dry-run
  9.  
  10. # run again without --dry-run to actually prune the local branch

以上是关于Git修剪远程和本地分支的主要内容,如果未能解决你的问题,请参考以下文章

GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段

如何修剪远程不再存在的本地跟踪分支

本地 GIT 分支和远程 GITHUB 分支是不是需要相同才能推送代码? [复制]

删除本地git的远程分支和远程删除git服务器的分支

Git拉取远程分支到本地

Git 拉取远程代码