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 history
11
hg manifest
12
hg cat a
13
hg verify