hgbook
annotate es/examples/cmdref @ 973:1df99de46e39
Finishing works to adapt already existing translations to new xdoc fmt - also add a couple new translations to follow recent modification from Bryan.
author | Romain PELISSE <belaran@gmail.com> |
---|---|
date | Tue Sep 01 17:00:12 2009 +0200 (2009-09-01) |
parents | |
children |
rev | line source |
---|---|
igor@333 | 1 #!/bin/bash |
igor@333 | 2 |
igor@333 | 3 hg init diff |
igor@333 | 4 cd diff |
igor@333 | 5 cat > myfile.c <<EOF |
igor@333 | 6 int myfunc() |
igor@333 | 7 { |
igor@333 | 8 return 1; |
igor@333 | 9 } |
igor@333 | 10 EOF |
igor@333 | 11 hg ci -Ama |
igor@333 | 12 |
igor@333 | 13 sed -ie 's/return 1/return 10/' myfile.c |
igor@333 | 14 |
igor@333 | 15 #$ name: diff-p |
igor@333 | 16 |
igor@333 | 17 echo '[diff]' >> $HGRC |
igor@333 | 18 echo 'showfunc = False' >> $HGRC |
igor@333 | 19 |
igor@333 | 20 hg diff |
igor@333 | 21 |
igor@333 | 22 hg diff -p |