在git remote上撤消set-branches

时间:2017-12-09 06:46:14

标签: git git-remote

我目前正在设置我的git remote以限制提取哪些分支:

git remote set-branches myOrigin myBranch

这会将适当的条目添加到.git/config

[remote "myOrigin"]
    fetch = +refs/heads/myBranch:refs/remotes/myOrigin/myBranch

现在我要撤消此操作,然后返回默认配置:

[remote "myOrigin"]
    fetch = +refs/heads/*:refs/remotes/myOrigin/*

如何在不手动修改.git/config的情况下执行此操作?我可以运行git命令吗?

2 个答案:

答案 0 :(得分:2)

只需使用引用的星号:

git remote set-branches myOrigin '*'

答案 1 :(得分:1)

其中一个解决方案:

git config remote.myOrigin.fetch +refs/heads/*:refs/remotes/myOrigin/*