Mercurial > hg
view tests/bundles/remote.sh @ 19084:70675d77fd4a stable
tests: make sed usage in test-unionrepo.t cross-platform
Usage of the 'i' command proves tricky. I tried to write a check-code rule, but
failed.
author | Kevin Bullock <kbullock@ringworld.org> |
---|---|
date | Tue, 23 Apr 2013 17:26:00 -0500 |
parents | 07708f4171f1 |
children | 5d57b2101ab1 |
line wrap: on
line source
#!/bin/bash hg init remote cd remote echo "0" >> afile hg add afile hg commit -m "0.0" echo "1" >> afile hg commit -m "0.1" echo "2" >> afile hg commit -m "0.2" echo "3" >> afile hg commit -m "0.3" hg update -C 0 echo "1" >> afile hg commit -m "1.1" echo "2" >> afile hg commit -m "1.2" echo "a line" > fred echo "3" >> afile hg add fred hg commit -m "1.3" hg mv afile adifferentfile hg commit -m "1.3m" hg update -C 3 hg mv afile anotherfile hg commit -m "0.3m" hg bundle -a ../remote.hg cd .. rm -Rf remote