Mercurial > hgsubversion
view tools/verify-all-heads.sh @ 1421:0094f222c5dc
maps: make readmapfile of RevMap a private instance method
Finally we have changed other code to not read rev_map directly. In order to
prevent future code accessing rev_map without going through RevMap, change
the readmapfile to a private instance method.
| author | Jun Wu <quark@fb.com> |
|---|---|
| date | Tue, 24 May 2016 00:15:20 +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
