vote up 12 vote down star
9

I'm trying out Git on Windows. I got to the point of trying "git commit" and I got this error:

Terminal is dumb but no VISUAL nor EDITOR defined. Please supply the message using either -m or -F option.

So I figured out I need to have an environment variable called EDITOR. No problem. I set it to point to Notepad.

That worked, almost. The default commit message opens in Notepad. But Notepad doesn't support bare line feeds.

I went out and got Notepad++. But I can't figure out how to get Notepad++ set up as the %EDITOR% in such a way that it works with Git as expected.

I'm not married to Notepad++. At this point I couldn't care less what editor I use. I just want to be able to type my commit messages without using -m.

So, for those of you using Git on Windows: What (free) tool do you use to edit your commit message, and what do you get when you type echo %EDITOR% at the command prompt?

flag

10 Answers

vote up 0 vote down

I also use Cygwin on Windows, but with gvim (as opposed to the terminal-based vim).

To make this work, I have done the following:

  1. Created a one-line batch file (named git_editor.bat) which contains the following:
    "C:/Program Files/Vim/vim72/gvim.exe" --nofork "%*"
  2. Placed git_editor.bat on in my PATH.
  3. Set GIT_EDITOR=git_editor.bat

With this done, git commit, etc. will correctly invoke the gvim executable.

NOTE 1: The --nofork option to gvim insures that it blocks until the commit message has been written.

NOTE 2: The quotes around the path to gvim is required if you have spaces in the path.

NOTE 3: The quotes around "%*" are needed just in case git passes a file path with spaces.

link|flag
vote up 3 vote down

Building on Darren's answer, to use Notepad++ you can simply do this:

git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin"

Works like a charm for me.

link|flag
vote up 1 vote down

I've just had the same problem and found a different solution. I was getting

error: There was a problem with the editor 'ec'

I've got VISUAL=ec, and a batch file called ec.bat on my path that contains one line:

c:\emacs\emacs-23.1\bin\emacsclient.exe %*

This lets me edit files from the command line with ec <filename>, and having visual set means most unixy programs pick it up too. Git seems to search the path differently to my other commands though - when I looked at a git commit in ProcMon I saw it look in every folder on the path for ec and for ec.exe, but not for ec.bat. I added another environment variable (GIT_EDITOR=ec.bat) and all was fine.

link|flag
vote up 0 vote down

I use Cygwin on Windows, so I use

export EDITOR="emacs -nw"

the "-nw" is for "no-windows", i.e. tell emacs not to try and use X11

The emacs keybindings don't work for me from a Windows shell, so I would only use this from a Cygwin shell... (rxvt recommended)

link|flag
vote up 7 vote down

Sorry peeps, I'm new to answering on StackOverflow - getting confused over who answered this and who edited that, lol.

Anyway, I've just been playing around with this and found the following to work nicely for me:

git config --global core.editor "'C:/Program Files/TextPad 5/TextPad.exe' -m"

I don't think CMD likes single-quotes so you must use double quotes "to specify the space embedded string argument".

Cygwin (which I believe is the underlying platform for Git's Bash) on the other hand likes both ' and "; you can specify a CMD-like paths, using / instead of \, so long as the string is quoted i.e. in this instance, using single-quotes.

The -m overrides/indicates the use of multiple editors and there is no need for a %* tacked on the end.

Cheers Darren

link|flag
vote up 13 vote down

I just tested it with git version 1.6.2.msysgit.0.186.gf7512 and Notepad++5.3.1

I prefer to not have to set an EDITOR variable, so I tried:

git config --global core.editor "\"c:\Program Files\Notepad++\notepad++.exe\""
or
git config --global core.editor "\"c:\Program Files\Notepad++\notepad++.exe\" %*"

That always give:

C:\prog\git>git config --global --edit
"c:\Program Files\Notepad++\notepad++.exe" %*: c:\Program Files\Notepad++\notepad++.exe: command not found
error: There was a problem with the editor '"c:\Program Files\Notepad++\notepad++.exe" %*'.

If I define a npp.bat including:

"c:\Program Files\Notepad++\notepad++.exe" %*

and I type:

C:\prog\git>git config --global core.editor C:\prog\git\npp.bat

It just works from the DOS session, but not from the git shell.
(not that with the core.editor configuration mechanism, a script with "start /WAIT..." in it would not work, but only open a new DOS window)


The actual solution was to realize that:
what you refer to in the config file is actually a shell (/bin/sh) script, not a DOS script.

So what does work is:

C:\prog\git>git config --global core.editor C:/prog/git/npp.bat

C:/prog/git/npp.bat:
#!/bin/sh
"c:/Program Files/Notepad++/notepad++.exe" -multiInst "$*"

With that setting, I can do 'git config --global --edit' from DOS or Git Shell, or I can do 'git rebase -i ...' from DOS or Git Shell.
Bot commands will trigger a new instance of notepad++ (hence the -multiInst' option), and wait for that instance to be closed before going on.

Note that I use only '/', not \'. And I installed msysgit using option 2. (Add the git\bin directory to the PATH environment variable, but without overriding some built-in windows tools)

The fact that the notepad++ wrapper is called .bat is not important.
It would be better to name it 'npp.sh' and to put it in the [git]\cmd directory though (or in any directory referenced by your PATH environment variable).


See also:

link|flag
In your shell script, you need double quotes around $*, otherwise it won't work properly for paths with spaces in them. Thanks for the thorough explanation - I'm installing git (and a bunch of other stuff) on Windows for beginning programmers, and the command line is hard enough to grok without making them learn vi commands. – Sarah Mei May 26 at 0:09
This method works fine under powershell. Thanks! – Peter Stephens Oct 4 at 23:45
Another concrete example: stackoverflow.com/questions/1634161/… – VonC Nov 1 at 22:59
vote up 1 vote down

It seems as if Git won't find the editor if there are spaces in the path. So you will have to put the batch file mentioned in Patrick's answer into a non-whitespace path.

link|flag
1  
This format works fine for paths with spaces: git config --global core.editor "\"c:\Program Files\textpad 5\textpad.exe\"" so it may be practical for you to avoid creating a batch file – Carl Jun 12 at 9:31
vote up 2 vote down

Vim/Gvim works well for me.

>echo %EDITOR%

c:\Vim\Vim71\vim.exe
link|flag
vote up 8 vote down

Notepad++ works just fine, although I choose to stick with Notepad, -m, or even sometimes the built-in "edit."

The problem you are encountering using Notepad++ is related to how git is launching the editor executable. My solution to this is to set EDITOR to a batch file, rather than the actual editor executable, that does the following:

start /WAIT "E:\PortableApps\Notepad++Portable\Notepad++Portable.exe" %*

/WAIT tells the command line session to halt until the application exits, thus you will be able to edit to your heart's content while git happily waits for you. %* passes all arguments to the batch file through to Notepad++.

c:\src>echo %EDITOR%
c:\tools\runeditor.bat
link|flag
I had trouble getting this to work under powershell. This method (stackoverflow.com/questions/10564/…) worked fine though. – Peter Stephens Oct 4 at 23:44
vote up 1 vote down

I've had difficulty getting git to cooperate with wordpad, KomodoEdit and pretty much every other editor I give it. Most open for editing, but git clearly doesn't wait for the save/close to happen.

As a crutch, I've just been doing a

git commit -m "Fixed the LoadAll method"

to keep things moving. Tends to keep my commit messages a little shorter than they probably should be, but clearly there's some work to be done on the Windows version of git.

The GitGUI also isn't that bad. It takes a little bit of orientation, but after that, it works fairly well.

link|flag

Your Answer

Get an OpenID
or

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