如何在 cygwin 中使用 git mergetool 中的 BeyondCompare?
如何在cygwin中使用“git mergetool”中的BeyondCompare?
How to use BeyondCompare from "git mergetool" in cygwin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个简单的答案。
或者就像你的 git 配置一样。
我使用 cygpath (cygwin 附带的)来转换路径。
-w
标志从 cygwin 格式(以 /cygdrive/c 开头)转换为 Windows 格式(以 c: 开头)。-a
标志使用绝对文件名。注意:我没有 Pro BeyondCompare 许可证,因此无法正确测试合并,但它可以正确打开前两个文件。
Here's a simple answer.
Or as in your git config.
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.
我找到了一些脚本来转换 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