git remote.branch.receivepack = git receive-pack

时间:2014-10-05 20:40:21

标签: git

我需要从我的git配置中删除它 我跑的时候

git config --list

我得到了

stufff
stufff
remote.live.receivepack=git receive-pack
more stuff

我需要删除它,因为这不是我的遥控器的名称,如果我从配置中删除该条目,以便我不从该遥控器拉。我想从配置中删除该条目

1 个答案:

答案 0 :(得分:3)

git config --list将列出最多3个配置文件的结果。

repo/.git/config - the repository config file  
~/.gitconfig - the global config file for your user  
/etc/gitconfig - the system config file for the machine you are on

使用'--unset'删除配置条目。如果没有选项,git config --unset将对存储库配置进行操作。使用'--global'指定用户配置,使用'--system'指定系统配置。

针对您的具体实例

git config --global --unset remote.live.receivepack