Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
标题说什么。git 的版本是 1.5.6.3 我试过使用 git branch --track 但它会抛出错误,说分支已经存在。我很困惑。
提前致谢!
如果您有一个名为“develop”的分支,并且您想将它与远程上类似名称的分支“取消链接”,请尝试以下操作:
git config --remove-section branch.develop
这将从您的本地工作副本中删除配置。
查看git config --list此更改之前和之后的差异。你显然可以通过简单地编辑你的.git/config文件来完成同样的事情,但我喜欢使用它git config。
git config --list
.git/config
git config