SVN with multiple and multiple files

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.

+7
linux svn meld
source share
1 answer

In your SVN directory, just call:

meld . 

Or:

 meld /path_to_my_svn_dir/ 

meld supports SVN and other VCS out of the box.

+6
source share

All Articles