hgbook
view en/examples/rollback @ 144:006bbad1f190
Add expected output files.
This makes it possible to spot changes in Mercurial's output and
behaviour over time.
This makes it possible to spot changes in Mercurial's output and
behaviour over time.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue Mar 06 21:44:56 2007 -0800 (2007-03-06) |
parents | |
children |
line source
1 #!/bin/bash
3 hg init a
4 cd a
5 echo a > a
6 hg ci -A -m 'First commit'
8 echo a >> a
10 #$ name: tip
12 #$ name: commit
14 hg status
15 echo b > b
16 hg commit -m 'Add file b'
18 #$ name: status
20 hg status
21 hg tip
23 #$ name: rollback
25 hg rollback
26 hg tip
27 hg status
29 #$ name: add
31 hg add b
32 hg commit -m 'Add file b, this time for real'
34 #$ name: twice
36 hg rollback
37 hg rollback