##// END OF EJS Templates
subrepo: change default path in hgrc of subrepo after cloning...
subrepo: change default path in hgrc of subrepo after cloning Previous behavior was to put in the cloned subrepos the path found in the original main repo. However it isn't valid for relative path and it seems more logical to reference instead the subrepos working copy path of the original main repo.

File last commit:

r9711:d29bd00b default
r10378:e1401c74 default
Show More
test-diff-color
64 lines | 724 B | text/plain | TextLexer
Augie Fackler
color: Add tests for colorized diff and status output.
r7458 #!/bin/sh
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
cat > a <<EOF
c
c
a
a
dd
a
a
c
c
EOF
echo '% default context'
hg diff --nodates --color=always
echo '% --unified=2'
Brodie Rao
color: add test for record support
r9579 hg diff --nodates -U 2 --color=always
Brodie Rao
color: colorize diff --stat
r9641 echo '% diffstat'
hg diff --stat --color=always
Brodie Rao
color: add test for record support
r9579 echo "record=" >> $HGRCPATH
echo "[ui]" >> $HGRCPATH
echo "interactive=true" >> $HGRCPATH
echo "[diff]" >> $HGRCPATH
echo "git=True" >> $HGRCPATH
echo % record
chmod 0755 a
hg record --color=always -m moda a <<EOF
y
y
EOF
echo
Martin Geisler
color: wrap qrecord...
r9711
echo "[extensions]" >> $HGRCPATH
echo "mq=" >> $HGRCPATH
hg rollback
echo % qrecord
hg qrecord --color=always -m moda patch <<EOF
y
y
EOF
echo