git config命令返回:致命:无法读取配置文件'%HOMEDRIVE %% HOMEPATH%/。gitconfig':没有这样的文件或目录

问题描述 投票:0回答:1

在我的Windows 10框中,当我运行时:

git config --global -l

它失败并显示以下消息:

致命:无法读取配置文件'%HOMEDRIVE %% HOMEPATH%/。gitconfig':没有这样的文件或目录

两个env变量看起来都不错(对我而言).gitgconfig应该是我认为的地方:

C:\Users\BRITTG2>echo %homedrive%
P:

C:\Users\BRITTG2>echo %homepath%
\

C:\Users\BRITTG2>dir %homedrive%%homepath%.gitconfig
 Volume in drive P is home
 Volume Serial Number is 8076-09DA

 Directory of P:\

03/25/2019  02:34 PM               658 .gitconfig
               1 File(s)            658 bytes
               0 Dir(s)  2,908,136,849,408 bytes free

我错过了什么?

git config global
1个回答
2
投票

找到一个旧帖子(我的!),解决方法:

git CMD finds .gitconfig but Windows cmd does not?

底线:Windows上的git没有使用homedrive和homepath。它使用的是env var home。当我设置它,它的工作原理

© www.soinside.com 2019 - 2024. All rights reserved.