如何在 cygwin 中使用 git mergetool 中的 BeyondCompare?

发布于 2024-09-17 19:40:01 字数 50 浏览 4 评论 0原文

如何在cygwin中使用“git mergetool”中的BeyondCompare?

How to use BeyondCompare from "git mergetool" in cygwin?

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

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

发布评论

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

评论(2

懒猫 2024-09-24 19:40:01

这是一个简单的答案。

#! /bin/sh
LOCAL=`cygpath -wa $1`
REMOTE=`cygpath -wa $2`
BASE=`cygpath -wa $3`
MERGED=`cygpath -wa $4`
/cygdrive/c/BeyondCompare3/BComp.exe $LOCAL $THEIRS $BASE $MERGED

或者就像你的 git 配置一样。

[mergetool "mergetool"]
    cmd = /cygdrive/c/BeyondCompare3/BComp.exe `cygpath -wa "$LOCAL"` `cygpath -wa "$REMOTE"` `cygpath -wa "$BASE"` `cygpath -wa "$MERGED"`

我使用 cygpath (cygwin 附带的)来转换路径。 -w 标志从 cygwin 格式(以 /cygdrive/c 开头)转换为 Windows 格式(以 c: 开头)。 -a 标志使用绝对文件名。

注意:我没有 Pro BeyondCompare 许可证,因此无法正确测试合并,但它可以正确打开前两个文件。

Here's a simple answer.

#! /bin/sh
LOCAL=`cygpath -wa $1`
REMOTE=`cygpath -wa $2`
BASE=`cygpath -wa $3`
MERGED=`cygpath -wa $4`
/cygdrive/c/BeyondCompare3/BComp.exe $LOCAL $THEIRS $BASE $MERGED

Or as in your git config.

[mergetool "mergetool"]
    cmd = /cygdrive/c/BeyondCompare3/BComp.exe `cygpath -wa "$LOCAL"` `cygpath -wa "$REMOTE"` `cygpath -wa "$BASE"` `cygpath -wa "$MERGED"`

I use cygpath (which comes with cygwin) to convert the paths. The -w flag converts from cygwin format (starting with /cygdrive/c) to windows format (starting with c:). The -a flag uses absolute filenames.

Note: I don't have a Pro BeyondCompare license, so I can't test merge properly, but it is correctly opening the first two files.

心凉 2024-09-24 19:40:01

我找到了一些脚本来转换 cygwin 路径(看起来很强大)并启动 BC3:
http://gist.github.com/564573

I've found some scripts to convert cygwin paths (robustly, it seems) and launch BC3:
http://gist.github.com/564573

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