I have a script whose name is svn-diff. I use this script to open svn diff for meld: svn diff --diff-cmd = 'meld' $ 1
Then I run it: svn-diff / path-to-my-svn-directory /
The problem is that meld open files one at a time, and not all files for tabs. I need to close one file to see the next file. I want to see all the changes in one view without closing other files.
I tried changing the script here: svn diff --diff-cmd = 'svnmeld' $ 1
And then create svnmeld script: meld -n $ 1 $ 2 &
But the error received is from meld.
I do not want to replace the 'svn diff' command with an external tool, because I use it quite often. The Meld version is 1.8.4, and the svn version is 1.8.8.
linux svn meld
Pasi
source share