Git rebase – 继续打开编辑器

在rebase因冲突而失败后,我无法使用
Git GUI客户端继续使用rebase.表演时

git rebase --continue

在命令行(msysgit 1.7.4)上,它打开了一个文本编辑器.关闭后,Git继续说道.如何避免打开编辑器?

最佳答案 当一个rebase失败时,你必须手动修复该文件然后执行git add filename来表示一切正常.此时,git rebase –continue将继续执行该过程而不会打扰您.

要更改默认编辑器git使用问题:git config –global core.editor new_editor

Commands such as commit and tag that lets you edit messages by launching an editor uses the value of this variable when it is set, and the environment variable GIT_EDITOR is not set. See git-var(1).

点赞