这些设置存储在Windows 8中的哪个位置?
不在 C:\用户\ [用户] \ gitconfig
显然。
答案 0 :(得分:1)
有商店:
<git>\etc\gitconfig
):system config %HOME%\.gitconfig
(全局配置),您使用git-cmd.bat
的ID,HOME
设置为%USER_PROFILE%
请注意,您需要自己定义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
,它应该为您提供主目录(可能是您正在寻找的目录)。