view tools/verify-all-heads.sh @ 1361:d227cf8d0860 stable

exchangepush: accept kwargs and just forward them
author Sean Farley <sean@farley.io>
date Thu, 15 Oct 2015 13:42:22 -0700
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