Re: Getting the diffs as whole files
From: Bob Proulx <bob_at_proulx.com>
Date: 2006-11-14 03:12:28 CET
Olivier Sannier wrote:
After you get a listing of the files that have changed use that to
svn cat somefile
And the one-liner to do it all at one time.
for f in $(svn st | awk '$1=="M"{print$NF}');do svn cat $f ; done
Bob
---------------------------------------------------------------------
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.