ChangeLog policy
Chris Shoemaker
c.shoemaker at cox.net
Sun Jan 1 14:21:29 EST 2006
On Sun, Jan 01, 2006 at 02:48:22PM +0100, Christian Stimming wrote:
> Am Samstag, 31. Dezember 2005 19:04 schrieb Chris Shoemaker:
> > Actually, all the things I don't like about ChangeLog.svn come from
> > the xslt. The output of svn log -v is actually very useful and the
> > fact that you can limit output the specific changed files is nice. E.g.
> >
> > $ svn log -v src/gnome/gnc-plugin-page-account* |less
>
> Can you give me a hint on how I can query "the log/diff for the last 3 days"?
> Something like "cvs diff -Dyesterday foo.c" or "cvs diff -D'3 days ago'
> bar.c"?
The '-r' argument to both 'svn diff' and 'svn log' accept an absolute
date format:
$ svn log -v -r {2005-12-25}:HEAD src/engine/ |less
See http://svnbook.red-bean.com/en/1.1/ch03s03.html#svn-ch-3-sect-3.3
for the many accepted date formats.
Relative dates are handled by date(1):
$ svn log -v -r {`date +%F -d'7 fortnights ago'`}:HEAD src/gnome/ |less
-chris
More information about the gnucash-devel
mailing list