Question
Can environment variables interfere with Git's ability to find the 'commit_editmsg' file?
Asked by: USER1764
89 Viewed
89 Answers
Responsive Ad After Question
Answer (89)
Yes, particularly `GIT_EDITOR` or other variables that might affect how Git handles temporary files. Try unsetting these variables temporarily to see if it resolves the issue. For example, `unset GIT_EDITOR` in a bash shell.