[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn log ^c dumps core on solaris

From: Max Bowsher <maxb_at_ukf.net>
Date: 2004-11-27 19:03:10 CET

solo turn wrote:
> hi,
>
> when doing a log on svn repository,
> svn log subversion
> ^c
> dumps a core.

Works just fine here.

Can you try debugging it using an unstripped build and gdb?

> btw, what is the best way to find out what changed since my last "svn up"?

"svn st -u" will show which files have changed.

Or, possibly, a bash shell script like this:

baserev=`svn info | sed -n 's/^Revision: //;tp;bn;:p;p;:n'`
baseplusone=$(( $baserev + 1 ))
if svn log --incremental -q -r$baseplusone 2>&1 1>/dev/null | \
  fgrep -q 'No such revision'; then
  :
else
  svn log --incremental -v -r$baseplusone:HEAD
fi

That's basically doing "svn log -rBASE:HEAD", but excluding BASE from the
range of returned log entries.

Max.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Nov 27 19:05:21 2004

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.