Git修剪远程和本地分支
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git修剪远程和本地分支相关的知识,希望对你有一定的参考价值。
http://yuji.wordpress.com/2010/06/11/git-delete-remote-branch/
# see what's out there git remote show origin # remove the remote branch 'branch-name' git push origin :branch-name # see what branches are only on local and no longer tracked git remote prune origin --dry-run # run again without --dry-run to actually prune the local branch
以上是关于Git修剪远程和本地分支的主要内容,如果未能解决你的问题,请参考以下文章
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段