Ray Miller <ray@sysdev.oucs.ox.ac.uk> writes:
> On Wed, Nov 05, 2003 at 12:19:15PM -0600, C. Michael Pilato wrote:
> >
> > If you see a long list of transactions, it likely indicates only that
> > you have been using a repository longer than we have had code to
> > remove those transactions over DAV (a couple of releases). :-)
>
> Yes, we've been running 0.28.2 for a while, and just upgraded to
> 0.32.1 yesterday. Is it a good idea to remove these transactions, or
> should I leave well alone?
If you know they aren't updates-in-progress, it's okay to remove them.
This little script will show you the transaction names and their
creation times -- might be handy for deciding what to keep and what
not to.
#/bin/sh
export REPOS_PATH=/path/to/repos
for TXN_NAME in `svnadmin lstxns ${REPOS_PATH}`; do
echo -n "${TXN_NAME} : "
svnlook date ${REPOS_PATH} -t ${TXN_NAME}
done
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Nov 5 20:56:59 2003