Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 926 Bytes

commit-message.md

File metadata and controls

14 lines (11 loc) · 926 Bytes

Bookmarks tagged [commit-message]

https://stackoverflow.com/questions/2596805/how-do-i-make-git-use-the-editor-of-my-choice-for-commit...

If you want to set the editor only for Git, do either (you don’t need both):

Set core.editor in your Git config: git config --global core.editor "vim" Set the GIT_EDITOR environment variable: `ex...