##// END OF EJS Templates
diff: add --inverse option...
diff: add --inverse option Most of the time, one can reverse a diff by swapping the revisions passed with -r but it happens that if you use the global -R, and diff against the tip of the current repo, you can't swap the revisions. One use-case for that is reviewing changes from a bundle before unbundling. One could also pipe the output of `hg diff` to a command line filter that reverses the diff, but that would remove the benefit from color diffs. Therefore, having an option in `hg diff` to reverse a diff is a good thing. The option flag selection was tricky. GNU patch uses -R/--reverse but -R is already used as a global option and --reverse would make --rev ambiguous.

File last commit:

r8167:6c82beaa default
r9725:3f522d2f default
Show More
test-convert-authormap
37 lines | 486 B | text/plain | TextLexer
/ tests / test-convert-authormap
Marti Raudsepp
convert: Add testcase for convert authormap.
r7961 #!/bin/sh
cat >> $HGRCPATH <<EOF
[extensions]
convert=
EOF
# Prepare orig repo
hg init orig
cd orig
echo foo > foo
Martin Geisler
tests: removed redundant "-d '0 0'" from test scripts...
r8167 HGUSER='user name' hg ci -qAm 'foo'
Marti Raudsepp
convert: Add testcase for convert authormap.
r7961 cd ..
# Explicit --authors
cat > authormap.txt <<EOF
user name = Long User Name
Marti Raudsepp
convert: fix authormap handling of lines without '='...
r7962
Marti Raudsepp
convert: handle comments starting with '#' in authormap files
r7968 # comment
Marti Raudsepp
convert: fix authormap handling of lines without '='...
r7962 this line is ignored
Marti Raudsepp
convert: Add testcase for convert authormap.
r7961 EOF
hg convert --authors authormap.txt orig new
echo $?
cat new/.hg/authormap
hg -Rnew log
rm -rf new
# Implicit .hg/authormap
hg init new
mv authormap.txt new/.hg/authormap
hg convert orig new
echo $?
hg -Rnew log