Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting this error when trying to set the global config:

$ git config --global user.name "Your Name Here"
error: could not lock config file /pathto/file/.gitconfig: No such file or directory

and the file .gitconfig is already exists, anyone have any ideas??

share|improve this question
Which OS is this on? (it looks like Git can't resolve your $HOME or $USER properly? Or did you put that "username" there yourself?) – Nevik Rehnel Feb 19 at 14:42
do you have the right permissions on .gitconfig? – CharlesB Feb 19 at 14:54
-rw-rw-r-- 1 .gitconfig – codepros Feb 19 at 15:07

1 Answer

A bit like in "Trouble setting up Tower with my GitHub Account - error: could not lock config file", check how that ~/.gitconfig file has been created.
Ie: with which rights associated to it?

Make also sure your $HOME variable is correctly set when you are executing the git config --global command.

share|improve this answer
already checked that still same error – codepros Feb 19 at 15:05
@codepros any chance that file might be locked by another process? – VonC Feb 19 at 15:06
I will try to reinstall git again – codepros Feb 19 at 15:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.