Git rebase --继续打开编辑器

发布于 2024-10-22 05:24:08 字数 156 浏览 2 评论 0原文

变基因冲突而失败后,我无法使用 Git GUI 客户端继续变基。 执行时

git rebase --continue

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

After a rebase failed with a conflict, I could not continue the rebase using a Git GUI client. When performing

git rebase --continue

on command line (msysgit 1.7.4), it opened a text editor. After having closed it, Git continued. How can opening the editor be avoided?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无远思近则忧 2024-10-29 05:24:08

当变基失败时,您必须手动修复文件,然后执行 git add filename 来表明一切正常。此时,git rebase --Continue 将继续该过程,而不会打扰您。

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

commit 和 tag 等命令允许您通过启动编辑器来编辑消息,在设置该变量时使用该变量的值,并且未设置环境变量 GIT_EDITOR。请参阅 git-var(1)。

When a rebase fails, you have to manually fix the file and then exec git add filename to signal that everything is OK. At this point, git rebase --continue will continue the procedure without bothering you.

To change the default editor git uses issue: 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).

得不到的就毁灭 2024-10-29 05:24:08

当变基发生冲突时,用户可能需要做出显着的更改来解决冲突。 Git 假设用户希望修改提交消息,对冲突解决方案进行评论。

这记录在git rebase<的提交改写段落中/code> 手册页。

防止打开编辑器并确认原始提交消息的方法如下:

$ GIT_EDITOR=true git rebase --continue

When a rebase incurs in conflicts, the user may need to make notable changes for resolving the them. Git assumes that the user wishes to modify the commit message, commenting on the conflict resolution.

This is documented in the paragraph Commit Rewording of the git rebase man page.

A way to prevent the editor from being opened, and to confirm the original commit message is the following:

$ GIT_EDITOR=true git rebase --continue
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文