view tools/verify-all-heads.sh @ 786:607f43a0f09c

replay: make --debug trace full fetches
author Patrick Mezard <pmezard@gmail.com>
date Sun, 13 Feb 2011 20:10:51 +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