Dennis Hackethal’s Blog
My blog about philosophy, coding, and anything else that interests me.
This is an older post. I don’t necessarily endorse it anymore.
Setting Sublime Text as Git Editor
Published
· 1-minute read
$ git config --global core.editor "subl -n -w"
The -n
tells Sublime to open a new window and -w
says to wait for the files to be closed before returning. (Run $ subl --help
to find out what these and other flags mean.)
If that doesn't work, try:
$ git config --global core.editor "/Applications/Sublime Text.app/Contents/MacOS/Sublime Text"
You can always confirm which editor you have set for git by running
$ git config --global -e
What people are saying
Dennis... Is it true that you plagiarized your book from Elliot Temple and David Duetsch?
Reply