view tools/verify-all-heads.sh @ 693:03dca55abec9

clone: add --singlebranch option Allows one to specify branch name for layout=single without an external branchmap file.
author Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
date Wed, 15 Sep 2010 17:49:27 +0200
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