2010-09-15 18:27:39 +04:00
|
|
|
$ echo "[extensions]" >> $HGRCPATH
|
|
|
|
$ echo "extdiff=" >> $HGRCPATH
|
|
|
|
|
|
|
|
$ hg init a
|
|
|
|
$ cd a
|
|
|
|
$ echo a > a
|
|
|
|
$ echo b > b
|
|
|
|
$ hg add
|
|
|
|
adding a
|
|
|
|
adding b
|
|
|
|
|
|
|
|
Should diff cloned directories:
|
|
|
|
|
|
|
|
$ hg extdiff -o -r $opt
|
|
|
|
Only in a: a
|
|
|
|
Only in a: b
|
2010-09-17 02:51:32 +04:00
|
|
|
[1]
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
$ echo "[extdiff]" >> $HGRCPATH
|
|
|
|
$ echo "cmd.falabala=echo" >> $HGRCPATH
|
|
|
|
$ echo "opts.falabala=diffing" >> $HGRCPATH
|
|
|
|
|
|
|
|
$ hg falabala
|
|
|
|
diffing a.000000000000 a
|
2010-09-17 02:51:32 +04:00
|
|
|
[1]
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
$ hg help falabala
|
|
|
|
hg falabala [OPTION]... [FILE]...
|
|
|
|
|
|
|
|
use 'echo' to diff repository (or selected files)
|
|
|
|
|
|
|
|
Show differences between revisions for the specified files, using the
|
|
|
|
'echo' program.
|
|
|
|
|
|
|
|
When two revision arguments are given, then changes are shown between
|
|
|
|
those revisions. If only one revision is specified then that revision is
|
|
|
|
compared to the working directory, and, when no revisions are specified,
|
|
|
|
the working directory files are compared to its parent.
|
|
|
|
|
|
|
|
options:
|
|
|
|
|
2011-09-21 22:00:48 +04:00
|
|
|
-o --option OPT [+] pass option to comparison program
|
|
|
|
-r --rev REV [+] revision
|
|
|
|
-c --change REV change made by revision
|
|
|
|
-I --include PATTERN [+] include names matching the given patterns
|
|
|
|
-X --exclude PATTERN [+] exclude names matching the given patterns
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
[+] marked option can be specified multiple times
|
|
|
|
|
help: indicate help omitting if help document is not fully displayed
Before this patch, there is no information about whether help document
is fully displayed or not.
So, some users seem to misunderstand "-v" for "hg help" just as "the
option to show list of global options": experience on "hg help -v" for
some commands not containing verbose containers may strengthen this
misunderstanding.
Such users have less opportunity for noticing omitted help document,
and this may cause insufficient understanding about Mercurial.
This patch indicates help omitting, if help document is not fully
displayed.
For command help, the message below is displayed at the end of help
output, if help document is not fully displayed:
use "hg -v help xxxx" to show more complete help and the global
options
and otherwise:
use "hg -v help xxxx" to show the global options
For topics and extensions help, the message below is displayed, only
if help document is not fully displayed:
use "hg help -v xxxx" to show more complete help
This allows users to know whether there is any omitted information or
not exactly, and can trigger "hg help -v" invocation.
This patch causes formatting help document twice, to switch messages
one for omitted help, and another for not omitted. This decreases
performance of help document formatting, but it is not mainly focused
at help command invocation, so this wouldn't become problem.
2012-10-18 05:31:15 +04:00
|
|
|
use "hg -v help falabala" to show the global options
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
$ hg ci -d '0 0' -mtest1
|
|
|
|
|
|
|
|
$ echo b >> a
|
|
|
|
$ hg ci -d '1 0' -mtest2
|
|
|
|
|
|
|
|
Should diff cloned files directly:
|
|
|
|
|
|
|
|
$ hg falabala -r 0:1
|
2011-03-25 18:46:19 +03:00
|
|
|
diffing */extdiff.*/a.8a5febb7f867/a a.34eed99112ab/a (glob)
|
2010-09-17 02:51:32 +04:00
|
|
|
[1]
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
Test diff during merge:
|
|
|
|
|
|
|
|
$ hg update -C 0
|
|
|
|
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
|
|
|
|
$ echo c >> c
|
|
|
|
$ hg add c
|
|
|
|
$ hg ci -m "new branch" -d '1 0'
|
|
|
|
created new head
|
|
|
|
$ hg merge 1
|
|
|
|
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
|
|
|
|
(branch merge, don't forget to commit)
|
|
|
|
|
|
|
|
Should diff cloned file against wc file:
|
|
|
|
|
2010-09-30 11:49:40 +04:00
|
|
|
$ hg falabala
|
2011-03-25 18:46:19 +03:00
|
|
|
diffing */extdiff.*/a.2a13a4d2da36/a */a/a (glob)
|
2010-09-17 02:51:32 +04:00
|
|
|
[1]
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
|
|
|
|
Test --change option:
|
|
|
|
|
|
|
|
$ hg ci -d '2 0' -mtest3
|
|
|
|
$ hg falabala -c 1
|
2011-03-25 18:46:19 +03:00
|
|
|
diffing */extdiff.*/a.8a5febb7f867/a a.34eed99112ab/a (glob)
|
2010-09-17 02:51:32 +04:00
|
|
|
[1]
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
Check diff are made from the first parent:
|
|
|
|
|
|
|
|
$ hg falabala -c 3 || echo "diff-like tools yield a non-zero exit code"
|
2011-03-25 18:46:19 +03:00
|
|
|
diffing */extdiff.*/a.2a13a4d2da36/a a.46c0e4daeb72/a (glob)
|
2010-09-15 18:27:39 +04:00
|
|
|
diff-like tools yield a non-zero exit code
|
|
|
|
|
2012-06-10 16:14:05 +04:00
|
|
|
#if execbit
|
|
|
|
|
2010-09-15 18:27:39 +04:00
|
|
|
Test extdiff of multiple files in tmp dir:
|
|
|
|
|
|
|
|
$ hg update -C 0 > /dev/null
|
|
|
|
$ echo changed > a
|
|
|
|
$ echo changed > b
|
|
|
|
$ chmod +x b
|
|
|
|
|
|
|
|
Diff in working directory, before:
|
|
|
|
|
|
|
|
$ hg diff --git
|
|
|
|
diff --git a/a b/a
|
|
|
|
--- a/a
|
|
|
|
+++ b/a
|
|
|
|
@@ -1,1 +1,1 @@
|
|
|
|
-a
|
|
|
|
+changed
|
|
|
|
diff --git a/b b/b
|
|
|
|
old mode 100644
|
|
|
|
new mode 100755
|
|
|
|
--- a/b
|
|
|
|
+++ b/b
|
|
|
|
@@ -1,1 +1,1 @@
|
|
|
|
-b
|
|
|
|
+changed
|
|
|
|
|
|
|
|
|
|
|
|
Edit with extdiff -p:
|
|
|
|
|
|
|
|
Prepare custom diff/edit tool:
|
|
|
|
|
|
|
|
$ cat > 'diff tool.py' << EOT
|
|
|
|
> #!/usr/bin/env python
|
|
|
|
> import time
|
|
|
|
> time.sleep(1) # avoid unchanged-timestamp problems
|
|
|
|
> file('a/a', 'ab').write('edited\n')
|
|
|
|
> file('a/b', 'ab').write('edited\n')
|
|
|
|
> EOT
|
|
|
|
|
|
|
|
$ chmod +x 'diff tool.py'
|
|
|
|
|
2010-09-18 02:03:08 +04:00
|
|
|
will change to /tmp/extdiff.TMP and populate directories a.TMP and a
|
|
|
|
and start tool
|
|
|
|
|
2010-09-15 18:27:39 +04:00
|
|
|
$ hg extdiff -p "`pwd`/diff tool.py"
|
2010-09-17 02:51:32 +04:00
|
|
|
[1]
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
Diff in working directory, after:
|
|
|
|
|
|
|
|
$ hg diff --git
|
|
|
|
diff --git a/a b/a
|
|
|
|
--- a/a
|
|
|
|
+++ b/a
|
|
|
|
@@ -1,1 +1,2 @@
|
|
|
|
-a
|
|
|
|
+changed
|
|
|
|
+edited
|
|
|
|
diff --git a/b b/b
|
|
|
|
old mode 100644
|
|
|
|
new mode 100755
|
|
|
|
--- a/b
|
|
|
|
+++ b/b
|
|
|
|
@@ -1,1 +1,2 @@
|
|
|
|
-b
|
|
|
|
+changed
|
|
|
|
+edited
|
|
|
|
|
|
|
|
Test extdiff with --option:
|
|
|
|
|
|
|
|
$ hg extdiff -p echo -o this -c 1
|
2011-03-25 18:46:19 +03:00
|
|
|
this */extdiff.*/a.8a5febb7f867/a a.34eed99112ab/a (glob)
|
2010-09-17 02:51:32 +04:00
|
|
|
[1]
|
2010-09-15 18:27:39 +04:00
|
|
|
|
|
|
|
$ hg falabala -o this -c 1
|
2011-03-25 18:46:19 +03:00
|
|
|
diffing this */extdiff.*/a.8a5febb7f867/a a.34eed99112ab/a (glob)
|
2010-09-17 02:51:32 +04:00
|
|
|
[1]
|
2010-09-15 18:27:39 +04:00
|
|
|
|
2011-03-16 00:50:02 +03:00
|
|
|
Test with revsets:
|
|
|
|
|
|
|
|
$ hg extdif -p echo -c "rev(1)"
|
2011-03-25 18:46:19 +03:00
|
|
|
*/extdiff.*/a.8a5febb7f867/a a.34eed99112ab/a (glob)
|
2011-03-16 00:50:02 +03:00
|
|
|
[1]
|
|
|
|
|
|
|
|
$ hg extdif -p echo -r "0::1"
|
2011-03-25 18:46:19 +03:00
|
|
|
*/extdiff.*/a.8a5febb7f867/a a.34eed99112ab/a (glob)
|
2011-03-16 00:50:02 +03:00
|
|
|
[1]
|
2011-04-29 13:10:11 +04:00
|
|
|
|
2011-04-29 10:04:46 +04:00
|
|
|
$ cd ..
|
|
|
|
|
2012-06-10 16:14:05 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if symlink
|
|
|
|
|
2011-04-29 13:10:11 +04:00
|
|
|
Test symlinks handling (issue1909)
|
|
|
|
|
2011-04-29 10:04:46 +04:00
|
|
|
$ hg init testsymlinks
|
|
|
|
$ cd testsymlinks
|
|
|
|
$ echo a > a
|
|
|
|
$ hg ci -Am adda
|
|
|
|
adding a
|
|
|
|
$ echo a >> a
|
|
|
|
$ ln -s missing linka
|
|
|
|
$ hg add linka
|
|
|
|
$ hg falabala -r 0 --traceback
|
|
|
|
diffing testsymlinks.07f494440405 testsymlinks
|
|
|
|
[1]
|
|
|
|
$ cd ..
|
2012-06-10 16:14:05 +04:00
|
|
|
|
|
|
|
#endif
|