git如何删除远端不存在的本地分支?

时间:2019-02-19 00:10:09   收藏:0   阅读:653

问题:远端分支删除后,如何删除之前拉取的本地分支?

答案:

  1. git fetch -p
  2. git remote show origin 可以查看remote地址,远程分支,还有本地分支与之相对应关系等信息。使用git remote prune origin删除所有远端已经删除本地仍然存在的分支
     

参考:

https://blog.csdn.net/LJFPHP/article/details/81741931

https://blog.csdn.net/qq_16885135/article/details/52777871

原文:https://www.cnblogs.com/shengulong/p/10398617.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!