hgbook

view en/examples/mq.dodiff @ 265:d9a1faa45c30

added a space between -m and the commit message.
author bab@draketo.de
date Fri Aug 31 11:36:14 2007 +0200 (2007-08-31)
parents dd657c4d3a47
children cac3ac4536e5
line source
1 #!/bin/bash
3 #$ name: diff
5 echo 'this is my first line' > oldfile
6 echo 'my first line is here' > newfile
8 diff -u oldfile newfile > tiny.patch
10 cat tiny.patch
12 patch < tiny.patch
14 cat oldfile