hgbook
annotate en/examples/mq.dodiff.diff.out @ 168:f8b5b782e150
Backed out changeset 08a4467f489162c14cf17b94aa771a23dd6f02dc
It just didn't work. Sigh.
It just didn't work. Sigh.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon Mar 26 23:20:59 2007 -0700 (2007-03-26) |
parents | |
children | bdd271cf1ae1 |
rev | line source |
---|---|
bos@144 | 1 $ \textbf{echo 'this is my first line' > oldfile} |
bos@144 | 2 $ \textbf{echo 'my first line is here' > newfile} |
bos@144 | 3 $ \textbf{diff -u oldfile newfile > tiny.patch} |
bos@144 | 4 $ \textbf{cat tiny.patch} |
bos@144 | 5 |
bos@144 | 6 |
bos@144 | 7 @@ -1 +1 @@ |
bos@144 | 8 -this is my first line |
bos@144 | 9 +my first line is here |
bos@144 | 10 $ \textbf{patch < tiny.patch} |
bos@144 | 11 patching file oldfile |
bos@144 | 12 $ \textbf{cat newfile} |
bos@144 | 13 my first line is here |