Mercurial > hg
view tests/test-branch-option @ 10418:5fc090ba08a6
localrepo: add optional validation (defaults to off) for incoming changes
This verifies that all manifests are present for incoming changes,
and all files for those manifests are also present. This is a simple
first-pass, and could be better, but seems like a valuable thing to
have, as I've seen pushes in the past that propagated revlog corruption.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Thu, 11 Feb 2010 16:37:43 -0600 |
parents | a78bfaf988e1 |
children | deaeb2d84d8a |
line wrap: on
line source
#!/bin/sh # test branch selection options hg init branch cd branch hg branch a echo a > foo hg ci -d '0 0' -Ama echo a2 > foo hg ci -d '0 0' -ma2 hg up 0 hg branch c echo c > foo hg ci -d '0 0' -mc cd .. hg clone -r 0 branch branch2 cd branch2 hg up 0 hg branch b echo b > foo hg ci -d '0 0' -mb hg up 0 hg branch -f b echo b2 > foo hg ci -d '0 0' -mb2 echo in rev c branch a hg in -qr c ../branch#a hg in -qr c -b a echo out branch . hg out -q ../branch#. hg out -q -b . echo clone branch b cd .. hg clone branch2#b branch3 hg -q -R branch3 heads b hg -q -R branch3 parents rm -rf branch3 echo clone rev a branch b hg clone -r a branch2#b branch3 hg -q -R branch3 heads b hg -q -R branch3 parents rm -rf branch3