Git 出现的 error: could not lock config file H:\/.gitconfig

来源:互联网 发布:游戏模型制作软件 编辑:程序博客网 时间:2024/06/18 10:42

找的网址就是

http://superuser.com/questions/688563/trying-to-install-and-create-new-git-repository-for-first-time-i-think-disconn


意思就是,

Check if you have an %HOME% environment variable defined.

If that variable exists and refers to H:\ (instead of %USERPROFILE%), then it will look for the global git config file in H:\.gitconfig (meaning %HOME%\.gitconfig).

Changing that %HOME% variable to a local path like %USERPROFILE% would solve that issue.


就是把环境变量%HOME%设置的目录下放置gitconfig文件,这个gitconfig文件可以在git的安装目录中找到。

最简单的做法就是把%HOME%设置为git的安装目录


0 1