view tools/verify-all-heads.sh @ 1097:e015cd34168d

authormap: allow case-insensitive authormaps for easier conversions
author maugustin
date Tue, 08 Jan 2013 10:44:38 +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