我有一个有趣的错误,在使用 git for windows(版本 2.12.0.windows.1)时不断出现。我最近将我的 Windows 配置文件目录从一个位置迁移到另一个位置。
对于某些 git 命令,我收到错误:
error: could not lock config file C:/Users/<my old profile>/.influxdb/.gitconfig: No such file or directory
error: could not lock config file C:/Users/<my old profile>/.influxdb/.gitconfig: No such file or directory
注意:此错误总是出现两次,例如,如果我尝试这样做git config --global diff.tool p4merge
有趣的是它正在寻找的这个文件夹不存在,如果我git config -l --show-origin
用来查看 git 从哪里获取它的设置,它没有提到这个路径,如果我查看任何CONFIG
文件,我看不到对这个的引用不存在的路径。
git 在哪里存储对这个旧路径的引用?我需要更新它,因为我认为这个错误正在停止一些命令的工作。