在Windows上安装git时,git设置存储在哪里?

时间:2015-03-02 12:29:50

标签: git

这些设置存储在Windows 8中的哪个位置?

enter image description here

不在 C:\用户\ [用户] \ gitconfig

显然。

2 个答案:

答案 0 :(得分:1)

有商店:

  • 在git安装文件夹本身(<git>\etc\gitconfig):system config
  • 位于%HOME%\.gitconfig(全局配置),您使用git-cmd.bat的ID,HOME设置为%USER_PROFILE%
  • 在您的本地仓库(.git / config)

请注意,您需要自己定义core.autocrlf,因为<git>\etc\gitconfig默认将其定义为true。

git config --global core.autocrlf false

(虽然有cases where core.autocrlf can help,但我更喜欢将其设置为false并working with .gitattributes core.eol directives

答案 1 :(得分:0)

尝试在&#34; git bash&#34;中使用运行echo $HOME,它应该为您提供主目录(可能是您正在寻找的目录)。