view tools/verify-all-heads.sh @ 783:7913a82a8cdd

Check mercurial/third-parties push conditions before pushing This prevents pushing MQ applied patches without --force.
author Patrick Mezard <pmezard@gmail.com>
date Tue, 01 Feb 2011 00:25:59 +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