6

when i try to make a git commit in emacs eshell mode:

git commit -a -m "message"

I receive an error:

'c:\Program' is not recognized as an internal or external command,
operable program or batch file.  

and at the same time this problem is absent in emacs shell mode. How to force eshell work correctly with git?

Luke Girvin
  • 13,221
  • 9
  • 64
  • 84
Andreo
  • 597
  • 5
  • 19

5 Answers5

4

This seems to be a problem with the whitespace in the directory name of the program you want to execute; this whitespace seems to be not properly escaped.

For example, if what you want to execute is "C:\Program Files\git\git.exe commit ...", then that first whitespace needs to be escaped, or the whole pathname enclosed in quotes, otherwise this line will be parsed into the tokens "C:\Program", "Files\git\git.exe", "...", the first token being the command to execute.

A first workaround would be to expand the full name by hand and enclose it in quotes, e.g.:

"C:\Program Files\git\git.exe" commit ...
Svante
  • 50,694
  • 11
  • 78
  • 122
  • 1
    i've solved problem by reinstalling git into c:/git, so there are not spaces in the paths – Andreo Jun 17 '09 at 13:29
4

Had a similar problem, this is for magit, (on MacOS). Add the following in your emacs startup file:

(add-to-list 'exec-path "/usr/local/git/bin")
(setq magit-git-executable "/usr/local/git/bin/git")
Chris Schreiner
  • 824
  • 8
  • 15
2

Don't know about specifically with git and emacs, but with other applications it has worked for me to replace Program Files with Progra~1 in your PATH.

Zwergner
  • 330
  • 1
  • 8
1

I had the very same problem, and "solved" it by changing PATH such that git.exe (in c:\Program Files\Git\bin) comes before git.cmd (in c:\program files\git\cmd, IIRC).

legoscia
  • 39,593
  • 22
  • 116
  • 167
-2

Uh, eshell and git? Why?

Just use magit for invoking git from emacs; it is much richer than the command-line interface.

jrockway
  • 42,082
  • 9
  • 61
  • 86
  • -1 Magit's interface doesn't support everything the command-line interface does. For instance, it doesn't support PGP signing commits, which makes it a non-starter for me. – Patrick Niedzielski Jan 28 '14 at 20:35
  • Magit also allows you to run commands as you would on the command line, so you can do everything in Magit that you can on the command line with the git command – practicalli-john May 02 '18 at 10:42