hgbook
annotate en/examples/mq.diff @ 56:b8539d91c84d
Begining of concepts chapter
author | Josef "Jeff" Sipek <jeffpc@josefsipek.net> |
---|---|
date | Mon Jul 24 23:57:52 2006 -0400 (2006-07-24) |
parents | |
children | 5cee64874312 |
rev | line source |
---|---|
bos@19 | 1 #$ name: diff |
bos@19 | 2 |
bos@19 | 3 echo 'this is my first line' > oldfile |
bos@19 | 4 echo 'my first line is here' > newfile |
bos@19 | 5 |
bos@19 | 6 diff -u oldfile newfile > tiny.patch |
bos@19 | 7 |
bos@19 | 8 cat tiny.patch |
bos@19 | 9 |
bos@19 | 10 patch < tiny.patch |
bos@19 | 11 |
bos@19 | 12 cat newfile |