view tools/verify-all-heads.sh @ 949:297e2b4a6e2c

editor: add addmissing() and test config to make it fail Missing files should be the exception not the norm. Right now, a lot of these are caused by incorrect handling of branch updates. The hgsubversion.failonmissing configuration entry will help chase them.
author Patrick Mezard <patrick@mezard.eu>
date Sat, 06 Oct 2012 10:09:09 +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