git:为单个命令选择编辑器

时间:2013-11-11 14:15:03

标签: git rebase git-rebase

我想做一个互动的rebase。但是这次会有很多编辑,所以我想使用不同的(图形)编辑器。我不想永久设置这个编辑器。我只需要这个单一的底板。我可以为此特定命令提供自定义编辑器吗?

2 个答案:

答案 0 :(得分:4)

使用此:

GIT_EDITOR=vim git rebase ...

答案 1 :(得分:1)

您也可以使用:

git -c core.editor = [editor] rebase [your args]