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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With