tests/test-remove
author Bryan O'Sullivan <bos@serpentine.com>
Thu, 22 Sep 2005 23:19:47 -0700
changeset 1321 b47f96a178a3
parent 936 b62d1e738fa9
child 1570 6a104941d56a
permissions -rwxr-xr-x
Clean up date and timezone handling. We used to pass changelog dates around as a "unixtime timezone" string containing a pair of encoded ints. Now, they get passed around as a (unixtime, timezone) tuple of numbers, which makes much more sense.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
936
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     1
#!/bin/sh
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     2
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     3
hg init a
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     4
cd a
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     5
echo a > foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     6
hg add foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     7
hg commit -m 1 -d "0 0"
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     8
rm foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
     9
hg remove foo
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
    10
hg commit -m 2 -d "0 0"
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
    11
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
    12
cd ..
b62d1e738fa9 Add a simple remove test
mpm@selenic.com
parents:
diff changeset
    13
hg clone a b