sapling/tests/test-diff-color.t
2010-09-26 13:41:32 -05:00

125 lines
1.9 KiB
Perl
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Setup
$ echo "[extensions]" >> $HGRCPATH
$ echo "color=" >> $HGRCPATH
$ hg init repo
$ cd repo
$ cat > a <<EOF
> c
> c
> a
> a
> b
> a
> a
> c
> c
> EOF
$ hg ci -Am adda
adding a
$ cat > a <<EOF
> c
> c
> a
> a
> dd
> a
> a
> c
> c
> EOF
default context
$ hg diff --nodates --color=always
diff -r cf9f4ba66af2 a
--- a/a
+++ b/a
@@ -2,7 +2,7 @@
c
a
a
-b
+dd
a
a
c
--unified=2
$ hg diff --nodates -U 2 --color=always
diff -r cf9f4ba66af2 a
--- a/a
+++ b/a
@@ -3,5 +3,5 @@
a
a
-b
+dd
a
a
diffstat
$ hg diff --stat --color=always
a | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
$ echo "record=" >> $HGRCPATH
$ echo "[ui]" >> $HGRCPATH
$ echo "interactive=true" >> $HGRCPATH
$ echo "[diff]" >> $HGRCPATH
$ echo "git=True" >> $HGRCPATH
record
$ chmod 0755 a
$ hg record --color=always -m moda a <<EOF
> y
> y
> EOF
diff --git a/a b/a
old mode 100644
new mode 100755
1 hunks, 1 lines changed
examine changes to 'a'? [Ynsfdaq?]
@@ -2,7 +2,7 @@
c
a
a
-b
+dd
a
a
c
record this change to 'a'? [Ynsfdaq?]
$ echo
$ echo "[extensions]" >> $HGRCPATH
$ echo "mq=" >> $HGRCPATH
$ hg rollback
rolling back to revision 0 (undo commit)
qrecord
$ hg qrecord --color=always -m moda patch <<EOF
> y
> y
> EOF
diff --git a/a b/a
old mode 100644
new mode 100755
1 hunks, 1 lines changed
examine changes to 'a'? [Ynsfdaq?]
@@ -2,7 +2,7 @@
c
a
a
-b
+dd
a
a
c
record this change to 'a'? [Ynsfdaq?]
$ echo