我刚刚决定并安装了 p4merge 作为我的 git 可视化合并工具。为了做到这一点,我使用这个命令配置了我的 git
git config --global merge.tool p4merge
git config --global mergetool.p4merge.cmd 'p4merge $BASE $LOCAL $REMOTE $MERGED'
然后我对它们进行了测试并运行了git difftool
命令,它工作得很好。但是当我运行时git difftool --cached
,p4merge 显示一条错误消息:
nul is (or points to) an invalid file
我也尝试按照此博客中的说明进行操作,但无法解决问题。
顺便说一句,我在 Windows 7 上使用 git & p4merge。有人知道这个问题的解决方案吗?