hgbook
diff 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 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ja/examples/cmdref.diff-p.out Sun Dec 13 16:35:56 2009 +0900 1.3 @@ -0,0 +1,22 @@ 1.4 +$ \textbf{echo '[diff]' >> $HGRC} 1.5 +$ \textbf{echo 'showfunc = False' >> $HGRC} 1.6 +$ \textbf{hg diff} 1.7 +diff -r myfile.c 1.8 + 1.9 + 1.10 +@@ -1,4 +1,4 @@ 1.11 + int myfunc() 1.12 + \{ 1.13 +- return 1; 1.14 ++ return 10; 1.15 + \} 1.16 +$ \textbf{hg diff -p} 1.17 +diff -r myfile.c 1.18 + 1.19 + 1.20 +@@ -1,4 +1,4 @@ int myfunc() 1.21 + int myfunc() 1.22 + \{ 1.23 +- return 1; 1.24 ++ return 10; 1.25 + \}