view tools/verify-all-heads.sh @ 1317:62fc5850eb28

svncommads: document the auto layout block
author Sean Farley <sean.michael.farley@gmail.com>
date Sun, 08 Feb 2015 17:32:21 -0800
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