Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

p4merge fails when doing a directory diff?

I am trying to use p4merge as my diff/merge tool in git.

But I got a serious problem.

I can use p4merge as a difftool with git difftool <sha1> <sha1> it works well. And I can also use it as a mergetool. But when I try to let it do a directory diff like git difftool -d <sha1> <sha1> it pops up an error dialog which says:

Errors: '/var/folders/6s/6sCbckgPGH42yLSh2eXveE+++TI/-Tmp-/git-difftool.9rgKV/left' is (or points to) an invalid file. '/var/folders/6s/6sCbckgPGH42yLSh2eXveE+++TI/-Tmp-/git-difftool.9rgKV/right' is (or points to) an invalid file.

Use 'p4merge -h' for more help.

So is this caused because p4merge doesn't support directory diff? is there any way to fix this?

BTW, this is my .gitconfig settings

; p4merge settings
; Can't do directory diff?
[difftool "p4merge"]
    cmd = /Applications/p4merge.app/Contents/MacOS/p4merge \"$LOCAL\" \"$REMOTE\"
    trustExitCode = false
[mergetool "p4merge"]
    cmd = /Applications/p4merge.app/Contents/MacOS/p4merge \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\" 
    trustExitCode = false

[difftool]
    prompt = false
[diff]
    ; tool = kdiff3
    tool = p4merge
[merge]
    ; tool = kdiff3
    tool = p4merge
like image 800
shengy Avatar asked Jul 27 '13 16:07

shengy


People also ask

What does p4 merge do?

P4Merge enables you to compare two text files with a common base file to locate differences and to select the text that you want in the merged result file. The purple icon ( ) is associated with the file that another user edited (their file), and purple bands highlight text that is unique to that file.


1 Answers

It is confirmed that p4merge does not support a directory diff.

like image 154
shengy Avatar answered Sep 21 '22 16:09

shengy