So I'm trying to set up GitHub for the first time ever and I want Sublime Text to be my core editor, how exactly do I do that? Sorry if this is a noob question, I am a noob :/

link|improve this question
On what platform? – CharlesB Sep 29 '11 at 8:03
Windows XP Service Pack 3 – Chris Wildman Sep 29 '11 at 8:04
feedback

2 Answers

up vote 2 down vote accepted

Enter this command in a prompt:

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

It will then pop up when prompted for a commit message, or any other edition task, but if it was already open it won't work since it uses the same instance. Don't know how to workaround this.

link|improve this answer
The latest build 2181 just added support for the -w (wait) command line argument on Windows. This solves the same instance problem you describe. – jrotello Feb 23 at 6:32
feedback

As this ranked highly when I was searching Google for Mac instructions, here is a combination of solutions I found.

First I set up a command line utility matching "subl" to Sublime Text from any terminal instance with this terminal command.

sudo ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" /bin/subl

Then I do a similar git config command to the Windows solution above, but with a -w parameter at the end.

git config --global core.editor "subl -w"
link|improve this answer
thank you for posting this, just fixed an issue I was having – chris hough Mar 27 at 3:12
feedback

Your Answer

 
or
required, but never shown

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