svn diff, I can call svndiff to get a graphical diff, by defining the alias (in my ~/.bashrc):
alias svndiff='svn diff --diff-cmd /home/kpe/diffwrapper'
diffwrapper like this:
#!/bin/sh
# Configure your favorite diff program here.
# Subversion provides the files as a 6-th and 7-th parameter.
meld "${6}" "${7}"
 
 
No comments:
Post a Comment