git emacsclient issues

0

Eu configurei minha variável de editor da seguinte forma:

git config --global core.editor "'which emacsclient' -t -s"

e obter esta saída sempre que eu quero editar a mensagem durante um commit

emacsclient: aliased to /Applications/Emacs.app/Contents/MacOS/bin/emacsclient -t -s :      
emacsclient:: command not found
error: There was a problem with the editor 'emacsclient: aliased to
/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -t -s '.
Please supply the message using either -m or -F option.
    
por bneil 13.04.2013 / 13:46

2 respostas

2

Você verificou a saída do comando which emacsclient ? Eu aposto que é

emacsclient: aliased to /Applications/Emacs.app/Contents/MacOS/bin/emacsclient

De qualquer forma, sua configuração global do git está localizada em ~/.gitconfig file, para que você possa verificá-la e editá-la.

    
por 13.04.2013 / 17:50
0

Definindo o caminho completo "/Aplicativos/Emacs.app/Contents/MacOS/bin/emacsclient -t -s" e não o alias para ser o editor funcionou para mim.

    
por 13.04.2013 / 20:31