0
  1. git branch -a节目remotes/team/masterremotes/team/my-branch

  2. git remote rm team"error: Could not remove config section 'remote.team'"(因为我用文本编辑器编辑了配置文件)。

既然team遥控器不见了,我该如何删除这些(本地)远程分支?

4

1 回答 1

1

要删除远程跟踪分支:

git branch -rd team/master 

-r是远程的意思。所以-rd意味着删除远程跟踪分支。

要自动远程任何不再有上游分支的远程跟踪分支:

git remote prune
于 2013-04-03T20:04:05.157 回答