comparison tests/test-remove @ 936:b62d1e738fa9

Add a simple remove test
author mpm@selenic.com
date Wed, 17 Aug 2005 12:26:06 -0800
parents
children 6a104941d56a
comparison
equal deleted inserted replaced
935:925563ff1b18 936:b62d1e738fa9
1 #!/bin/sh
2
3 hg init a
4 cd a
5 echo a > foo
6 hg add foo
7 hg commit -m 1 -d "0 0"
8 rm foo
9 hg remove foo
10 hg commit -m 2 -d "0 0"
11
12 cd ..
13 hg clone a b