我目前正在设置我的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
命令吗?
答案 0 :(得分:2)
只需使用引用的星号:
git remote set-branches myOrigin '*'
答案 1 :(得分:1)
其中一个解决方案:
git config remote.myOrigin.fetch +refs/heads/*:refs/remotes/myOrigin/*