I've been having a problem setting sublime text 2 as the core.editor with git. I've read through every post I could find addressing the problem, but still nothing is working for me. I am running windows.

I have done:

git config --global core.editor "'C:/Program Files/Sublime Text 2/sublime_text.exe'"

and tried that with various arguments like -m. When I open my .gitconfig, this is what is in there:

[user]
    name = Spencer Moran
    email = smoran02@gmail.com
[core]
    editor = 'C:/Program Files/Sublime Text 2/sublime_text.exe'

If I go to git and type:

README.markdown --edit

the readme file opens in Notepad, not Sublime Text. Does anyone have any idea what I'm doing wrong or how I could fix this?

link|improve this question
5  
If you're typing only README.markdown --edit in cmd.exe, git isn't involved at all. Change your file associations in windows if you want that to work. – Mat Jan 21 at 7:58
feedback

2 Answers

The latest build 2181 just added support for the -w (wait) command line argument. The following configuration will allow ST2 to work as your default git editor on Windows. This will allow git to open ST2 for commit messages and such.

git config --global core.editor "'c:/program files/sublime text 2/sublime_text.exe' -w"
link|improve this answer
feedback

You can use this command on Mac

git config --global core.editor "open -a 'Sublime Text 2'"
link|improve this answer
1  
The question is about Windows, please answer accordingly – CharlesB Feb 19 at 13:45
feedback

Your Answer

 
or
required, but never shown

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