我正在关注this帖子,并在尝试
时遇到标题中的错误 git rebase -i origin/master
代码:
/user/libexec/git-core/git-rebase--interactive: line 237: nano: command not found
could not execute editor
答案 0 :(得分:1)
没有告诉git rebase -i使用什么编辑器, 使用以下命令解决问题。
export GIT_EDITOR = nano(global)
或
git config --global core.editor“nano”(本地)
替换'vim'代替vim编辑器的'nano'