hgbook
annotate en/examples/daily.files.remove.out @ 146:65f6f9d18fa1
Oops! I forgot that I need the undoctored output files in the book!
Now they're named "*.lxo", instead of "*.out". Ugh.
Now they're named "*.lxo", instead of "*.out". Ugh.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue Mar 06 21:55:48 2007 -0800 (2007-03-06) |
parents | |
children |
rev | line source |
---|---|
bos@144 | 1 $ \textbf{hg init remove-example} |
bos@144 | 2 $ \textbf{cd remove-example} |
bos@144 | 3 $ \textbf{echo a > a} |
bos@144 | 4 $ \textbf{mkdir b} |
bos@144 | 5 $ \textbf{echo b > b/b} |
bos@144 | 6 $ \textbf{hg add a b} |
bos@144 | 7 adding b/b |
bos@144 | 8 $ \textbf{hg commit -m 'Small example for file removal'} |
bos@144 | 9 $ \textbf{hg remove a} |
bos@144 | 10 $ \textbf{hg status} |
bos@144 | 11 R a |
bos@144 | 12 $ \textbf{hg remove b} |
bos@144 | 13 removing b/b |