문제

I'm attempting to squash some git commits using rebase. When I run this:

git rebase -i HEAD

I get this error:

/usr/lib/git-core/git-rebase: 1: eval: /usr/bin/mate: not found
Could not execute editor

I've attempted to change the git config editor variable but I haven't gotten it to work. Right now my config file shows the following:

[core]
    editor = /usr/bin/vim

I'm running Ubuntu 13.04

Any ideas?

도움이 되었습니까?

해결책

Do something like that

$ git config --global core.editor emacs

where emacs paste name of your editor

다른 팁

Check to make sure GIT_EDITOR is not set in your environment. It takes precedence over core.editor.

As additional measure you can look at the sequence.editor config option:

[sequence]
    editor = /usr/bin/vim

or override it's behavior with GIT_SEQUENCE_EDITOR=/usr/bin/vim env variable.

More details you can find on: git-config.txt-sequenceeditor

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top