tags:

views:

607

answers:

5

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?

+1  A: 

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
i've solved problem by reinstalling git into c:/git, so there are not spaces in the paths
Andreo
+1  A: 

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
+1  A: 

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
the error occurs somewhere inside git or emacs.eshell, so i can't manage
Andreo
A: 

Uh, eshell and git? Why?

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

jrockway
+1  A: 

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")
cschreiner