" git config --list"显示意外行为

时间:2017-02-18 16:51:02

标签: github terminal macos-sierra

我是GIT的新手。使用以下命令时,终端窗口显示以下图像,并在其末尾显示我的用户名和电子邮件。这与GIT手册非常不同。为什么会这样?

git config --list

终端输出

Output Image

1 个答案:

答案 0 :(得分:0)

Answer基于OP评论对话:

这里,许多别名以某种方式在git配置中设置。您可以{gid config unsetedit

--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