答案 0 :(得分:0)
Answer
基于OP评论对话:这里,许多别名以某种方式在git配置中设置。您可以{gid config unset
或edit
。
--global
个设置保存在~/.gitconfig
文件中
--local
个设置保存在<repsitory>/.git/config
文件中。
使用终端或任何编辑器打开~/.gitconfig
文件。现在删除git配置列表中不需要的行。
Unset
使用终端命令:$ git config --global --unset core.quotepath # remove your core 'quotepath'
$ git config --global --unset alias.a # remove your alias 'a'
Remove
使用终端命令的整个部分:$ git config --global --remove-section alias # remove the 'global alias' section
$ git config --local --remove-section alias # remove the 'local alias' section