Reputation: 87
I am trying to modify the Git config file in Windows
git config --global user.name myname
but I get this error:
error: could not lock config file (null)/(null)/.gitconfig: No such file or directory
Upvotes: 2
Views: 1364
Reputation: 24619
Ensure your Environment Variables are correctly setup.
right-click on My Computer => Properties => Advanced => Environment Variables => System Variables
Find HOME
variable and set it to %USERPROFILE%
Upvotes: 6