hgbook
annotate en/examples/concepts @ 64:d12a199ed472
Update hook reference.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Fri Aug 04 13:43:26 2006 -0700 (2006-08-04) |
parents | |
children |
rev | line source |
---|---|
jeffpc@56 | 1 #$ name: dirlist |
jeffpc@56 | 2 hg init newrepo |
jeffpc@56 | 3 cd newrepo |
jeffpc@56 | 4 |
jeffpc@56 | 5 find . |
jeffpc@56 | 6 |
jeffpc@56 | 7 #$ name: |
jeffpc@56 | 8 echo "a line of text" > foo |
jeffpc@56 | 9 echo "another life of text" > bar |
jeffpc@56 | 10 hg commit -A -m "Some files" |
jeffpc@56 | 11 |
jeffpc@56 | 12 #$ name: dirlist2 |
jeffpc@56 | 13 find . |
jeffpc@56 | 14 |
jeffpc@56 | 15 #$ name: |
jeffpc@56 | 16 cd .. |
jeffpc@56 | 17 |
jeffpc@56 | 18 #$ name: hginit |
jeffpc@56 | 19 hg init reponame |