When external diff is configured, results are displayed per file, i.e. to view differences for the next file one needs to close currently running diff viewer.

Is there a way to make git spawn all diff viewer processes in parallel?

If I just spawn process from within external diff script, apparently git deletes the temporary files it uses for comparison.

So

#!/usr/bin/python
import subprocess
import sys
p = subprocess.Popen(('/usr/bin/meld', sys.argv[2], sys.argv[5]))
#p.wait()

does not work, with meld displaying 'Could not read from '/tmp/.diff_VlLwKF'

However, if I uncomment

#p.wait()

everything works fine, but again, it's sequential spawning, not parallel.

Thanks

link|improve this question

What environment are you using? It should be possible to write a wrapper than spawns a viewer in the background and use this as your difftool. – Charles Bailey Aug 11 '09 at 8:24
Please see question, added some more info – Art Aug 11 '09 at 8:39
I think you can configure git to not delete temporary files it uses for comparison (see git-config/git-difftool manpage). – Jakub NarÄ™bski Aug 11 '09 at 10:06
How is the external diff configured? I simply set the PAGER environment variable to my external program and I get the complete diff file in it. – spatz Aug 17 '09 at 13:36
feedback

1 Answer

up vote 5 down vote accepted

I asked a similar question on SO, wanting to open diff files in tabs in BeyondCompare. I came up with this:

for name in $(git diff --name-only $1); do git difftool $1 $name & done

This gets the list of modified files and calls the external diff tool in a background task on each separate file.

Check out the details here and how I make it easy to use. Being new to bash I'd love to hear of any improvements...

Edit 1: added optional param (eg '--staged')
Edit 2: added git alias (see link).

link|improve this answer
Excellent, that's what I need! Thanks! – Art Aug 18 '09 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.