hgbook
annotate ja/examples/cmdref.diff-p.out @ 1114:527b86d55d4a
inotify: update installation information
inotify is shipped in Mercurial since 1.0, which greatly simplifies the installation process
inotify is shipped in Mercurial since 1.0, which greatly simplifies the installation process
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Sun Dec 13 16:35:56 2009 +0900 (2009-12-13) |
parents | |
children |
rev | line source |
---|---|
foozy@708 | 1 $ \textbf{echo '[diff]' >> $HGRC} |
foozy@708 | 2 $ \textbf{echo 'showfunc = False' >> $HGRC} |
foozy@708 | 3 $ \textbf{hg diff} |
foozy@708 | 4 diff -r myfile.c |
foozy@708 | 5 |
foozy@708 | 6 |
foozy@708 | 7 @@ -1,4 +1,4 @@ |
foozy@708 | 8 int myfunc() |
foozy@708 | 9 \{ |
foozy@708 | 10 - return 1; |
foozy@708 | 11 + return 10; |
foozy@708 | 12 \} |
foozy@708 | 13 $ \textbf{hg diff -p} |
foozy@708 | 14 diff -r myfile.c |
foozy@708 | 15 |
foozy@708 | 16 |
foozy@708 | 17 @@ -1,4 +1,4 @@ int myfunc() |
foozy@708 | 18 int myfunc() |
foozy@708 | 19 \{ |
foozy@708 | 20 - return 1; |
foozy@708 | 21 + return 10; |
foozy@708 | 22 \} |