1
#!/bin/bash
2
3
set -x
4
mkdir t
5
cd t
6
hg init
7
echo a > a
8
hg add a
9
hg commit -t "test" -u test -d "0 0"
10
hg verify
11
hg parents
12
hg status
13
hg undo
14
15
16