本文介绍了这个分支在git中跟踪(如果有的话)是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
: git branch -vv
查看哪些分支被跟踪,哪些不是。
After creating a branch with --track (or leaving the default, or --notrack), you later wish to be reminded of what a branch is tracking. Is there a way, other than searching through the .git/config file, to display what a branch is tracking?
Use: git branch -vv
to see which branches are tracked and which are not.
这篇关于这个分支在git中跟踪(如果有的话)是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!