git分支的对面

我想停止跟踪某些分支。 我使用git branch --set-upstream foo origin/foo设置跟踪。

我该如何解决这个问题?


尝试以下方法:

git config --unset branch.<branch>.remote
git config --unset branch.<branch>.merge

在即将发布的git 1.8中,您将能够做到:

git branch --unset-upstream

但是,现在您必须按照manojlds的建议进行操作,并使用两个git config --unset命令。


如果我明白你想删除本地和远程分支之间的关联......我认为最简单的方法之一应该是编辑配置文件(.git / config)。

你可以在这里找到与你的问题有关的东西

要删除本地和远程分支之间的关联,并删除本地分支,请运行:

git config --unset branch.<branch>.remote
git config --unset branch.<branch>.merge
git branch -d <branch>
链接地址: http://www.djcxy.com/p/26099.html

上一篇: Opposite of git branch

下一篇: Why do I need to explicitly push a new branch?