hgbook

view en/examples/mq.dodiff.diff.out @ 252:f2061ece8ed9

Fix file printed in first MQ "understanding patches" example
author Alexandre Perrin <makoto.kaworu@gmail.com>
date Wed May 30 22:02:48 2007 -0700 (2007-05-30)
parents
children bdd271cf1ae1
line source
1 $ \textbf{echo 'this is my first line' > oldfile}
2 $ \textbf{echo 'my first line is here' > newfile}
3 $ \textbf{diff -u oldfile newfile > tiny.patch}
4 $ \textbf{cat tiny.patch}
7 @@ -1 +1 @@
8 -this is my first line
9 +my first line is here
10 $ \textbf{patch < tiny.patch}
11 patching file oldfile
12 $ \textbf{cat newfile}
13 my first line is here