Re: svn feature request: print URL in diff output

2005-11-08 Thread Giovanni Bajo
Uros Bizjak <[EMAIL PROTECTED]> wrote: >> I would like that svn print the URL of each file in the diff output, >> like CVS's `RCS file'. One of the scripts I use to test GCC (which I >> have not contributed yet because of the svn transition) used it to >> detect the directory in which the > patch

Re: svn feature request: print URL in diff output

2005-11-08 Thread Paolo Bonzini
BTW: Is there a way to include a C function heading in diff output? I have tried 'svn diff -x -p' to get: svn: '-p' is not supported To add this by default, I made diff-cmd point to this script I called gcc-diff #! /bin/sh case "$1" in -u|-U*) exec diff -p "$@" ;; -c|-C*) exec diff -p

Re: svn feature request: print URL in diff output

2005-11-08 Thread Uros Bizjak
Paolo Bonzini wrote: > I would like that svn print the URL of each file in the diff output, like > CVS's > `RCS file'. One of the scripts I use to test GCC (which I have not contributed > yet because of the svn transition) used it to detect the directory in which the > patch should apply. Is it