git-rebase - interactive:第237行:nano:未找到命令

时间:2014-02-12 08:29:20

标签: git

我正在关注this帖子,并在尝试

时遇到标题中的错误

git rebase -i origin/master

代码:

/user/libexec/git-core/git-rebase--interactive: line 237: nano: command not found

could not execute editor

1 个答案:

答案 0 :(得分:1)

没有告诉git rebase -i使用什么编辑器, 使用以下命令解决问题。

export GIT_EDITOR = nano(global)

git config --global core.editor“nano”(本地)

替换'vim'代替vim编辑器的'nano'