Mercurial > hgsubversion
view tools/verify-all-heads.sh @ 1514:bdffbddfa704
subrepo: refactor dirty() to be cleaner
A future patch will modify dirty() to match an upstream change. Let's first
refactor it to be a bit cleaner so the next patch is readable.
This patch should not change any logic.
author | Durham Goode <durham@fb.com> |
---|---|
date | Tue, 11 Jul 2017 16:34:59 -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