如何在 Mercurial 中应用补丁并在应用失败时显示 diff 工具

发布于 2024-12-13 18:42:07 字数 216 浏览 2 评论 0原文

我想在 Mercurial 中应用补丁:

hg import patch_name.patch

但是如果出现错误 abort: patch failed to apply,Mercurial 会创建 *.rej 文件。

有没有办法显示 kdiff 或 vim-diif 来纠正冲突。

I want apply patch in Mercurial:

hg import patch_name.patch

But if I get the error abort: patch failed to apply, Mercurial creates *.rej files.

Is there a way show kdiff or vim-diif to correcting conflict.

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

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

发布评论

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

评论(2

不喜欢何必死缠烂打 2024-12-20 18:42:07

没有办法做到这一点。推荐的方法是打开文件和 .rej 文件并手动合并被拒绝的块。

There isn't a way to do this. The recommended approach is to open the file and the .rej file and manually merge in the rejected hunks.

骷髅 2024-12-20 18:42:07

我敢打赌 hg 返回一个错误代码。也许您可以将 hg import 包装在 shell 脚本中,捕获返回的错误代码,并在出现错误时执行您想要的操作?像这样的东西:

#!/bin/sh
# run the script by typing `hgimp patch_name.patch`
# $1 below will contain patch_name.patch
hg import $1

# if the return code is not equal to 0, run vimdiff or whatever
if [ ! "$?" -eq '0' ]; then
    # run your diff/cleanup commands here
fi

I would bet that hg returns an error code. Perhaps you can wrap hg import in a shell script that catches the error code returned and does what you want if there was an error? Something like:

#!/bin/sh
# run the script by typing `hgimp patch_name.patch`
# $1 below will contain patch_name.patch
hg import $1

# if the return code is not equal to 0, run vimdiff or whatever
if [ ! "$?" -eq '0' ]; then
    # run your diff/cleanup commands here
fi
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文