我删除了 GIT 中的远程分支,但其他客户端仍然看到该分支
I removed remote branch in GIT but other clients still see this branch
在 GIT 我删除了远程分支:
git push origin :my_removed_branch
但是如果其他客户端会这样做:
git branch -a
他会看到被移除的分支。
...
remotes/origin/master
remotes/origin/my_removed_branch
如何让其他客户停止查看已删除的分支?
Git版本:1.9.5
他需要 运行 git fetch --prune
删除服务器上没有对应的所有分支。
同意@hauleth 的回答,你需要修剪。
如果您想在执行 git 拉取或获取时执行自动修剪,您可能需要阅读关于 automatically having branches pruned 的这个 Whosebug 答案,而无需手动调用它
在 GIT 我删除了远程分支:
git push origin :my_removed_branch
但是如果其他客户端会这样做:
git branch -a
他会看到被移除的分支。
...
remotes/origin/master
remotes/origin/my_removed_branch
如何让其他客户停止查看已删除的分支?
Git版本:1.9.5
他需要 运行 git fetch --prune
删除服务器上没有对应的所有分支。
同意@hauleth 的回答,你需要修剪。
如果您想在执行 git 拉取或获取时执行自动修剪,您可能需要阅读关于 automatically having branches pruned 的这个 Whosebug 答案,而无需手动调用它