view tools/verify-all-heads.sh @ 538:93bb37e38675

svnmeta: do not change added/deletedtags while detecting them
author Patrick Mezard <pmezard@gmail.com>
date Tue, 02 Feb 2010 21:10:01 +0100
parents 11c4c7242a36
children
line wrap: on
line source

#!/bin/sh
. $(dirname $0)/common.sh

for b in `hg branches -aq` ; do
    hg co $b || break
    echo verifying $b
    hg svn verify
done