Mercurial > hgbook
comparison en/examples/tour @ 88:d351032c189c
Progress with log coverage.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Thu, 12 Oct 2006 10:33:03 -0700 |
parents | 0995016342f8 |
children | 7524d52d9577 |
comparison
equal
deleted
inserted
replaced
87:0995016342f8 | 88:d351032c189c |
---|---|
14 | 14 |
15 #$ name: ls | 15 #$ name: ls |
16 | 16 |
17 ls -l | 17 ls -l |
18 ls hello | 18 ls hello |
19 | |
20 #$ name: ls-a | |
21 | |
22 cd hello | |
23 ls -a | |
24 | |
25 #$ name: log | |
26 | |
27 hg log | |
28 | |
29 #$ name: log-r | |
30 | |
31 hg log -r 3 | |
32 hg log -r ff5d7b70a2a9 | |
33 hg log -r 1 -r 4 | |
34 | |
35 #$ name: log.range | |
36 | |
37 hg log -r 2:4 |