Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 195651
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:42:01+00:00 2026-05-11T16:42:01+00:00

I’m trying out Git on Windows . I got to the point of trying

  • 0

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 don’t mind what editor I use. I just want to be able to type commit messages in an editor rather than the command line (with -m).

Those of you using Git on Windows: What tool do you use to edit your commit messages, and what did you have to do to make it work?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T16:42:01+00:00Added an answer on May 11, 2026 at 4:42 pm

    Update September 2015 (6 years later)

    The last release of git-for-Windows (2.5.3) now includes:

    By configuring git config core.editor notepad, users can now use notepad.exe as their default editor.
    Configuring git config format.commitMessageColumns 72 will be picked up by the notepad wrapper and line-wrap the commit message after the user edits it.

    See commit 69b301b by Johannes Schindelin (dscho).

    And Git 2.16 (Q1 2018) will show a message to tell the user that it is waiting for the user to finish editing when spawning an editor, in case the editor
    opens to a hidden window or somewhere obscure and the user gets
    lost.

    See commit abfb04d (07 Dec 2017), and commit a64f213 (29 Nov 2017) by Lars Schneider (larsxschneider).
    Helped-by: Junio C Hamano (gitster).
    (Merged by Junio C Hamano — gitster — in commit 0c69a13, 19 Dec 2017)

    launch_editor(): indicate that Git waits for user input

    When a graphical GIT_EDITOR is spawned by a Git command that opens
    and waits for user input (e.g. “git rebase -i“), then the editor window
    might be obscured by other windows.
    The user might be left staring at
    the original Git terminal window without even realizing that s/he needs
    to interact with another window before Git can proceed. To this user Git
    appears hanging.

    Print a message that Git is waiting for editor input in the original
    terminal and get rid of it when the editor returns, if the terminal
    supports erasing the last line


    Original answer

    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 gives:

    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)


    Bennett’s answer mentions the possibility to avoid adding a script, but to reference directly the program itself between simple quotes. Note the direction of the slashes! Use / NOT \ to separate folders in the path name!

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

    Or if you are in a 64 bit system:

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

    But I prefer using a script (see below): that way I can play with different paths or different options without having to register again a git config.


    The actual solution (with a script) 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
    

    with C:/prog/git/npp.bat:

    #!/bin/sh
    "c:/Program Files/Notepad++/notepad++.exe" -multiInst "$*"
    

    or

    #!/bin/sh
    "c:/Program Files/Notepad++/notepad++.exe" -multiInst -notabbar -nosession -noPlugin "$*"
    

    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:

    • How do I view ‘git diff’ output with visual diff program? for the general theory
    • How do I setup DiffMerge with msysgit / gitk? for another example of external tool (DiffMerge, and WinMerge)

    lightfire228 adds in the comments:

    For anyone having an issue where N++ just opens a blank file, and git doesn’t take your commit message, see “Aborting commit due to empty message“: change your .bat or .sh file to say:

    "<path-to-n++" .git/COMMIT_EDITMSG -<arguments>. 
    

    That will tell notepad++ to open the temp commit file, rather than a blank new one.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I've got a string that has curly quotes in it. I'd like to replace

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.