##// END OF EJS Templates
color: bring back colors with pager...
color: bring back colors with pager It's introduced by 3c368a1c962d, but missing in merge changeset at a890cc501501.

File last commit:

r11198:b345b1cc default
r11207:1d714c15 default
Show More
test-bookmarks-rebase
34 lines | 440 B | text/plain | TextLexer
/ tests / test-bookmarks-rebase
#!/bin/sh
source $TESTDIR/helpers.sh
echo "[extensions]" >> $HGRCPATH
echo "rebase=" >> $HGRCPATH
echo "bookmarks=" >> $HGRCPATH
echo % initialize repository
hg init
echo 'a' > a
hg ci -A -m "0"
echo 'b' > b
hg ci -A -m "1"
hg up 0
echo 'c' > c
hg ci -A -m "2"
echo 'd' > d
hg ci -A -m "3"
hg bookmark -r 1 one
hg bookmark -r 3 two
echo % bookmark list
hg bookmark
echo % rebase
hg rebase -s two -d one 2>&1 | cleanrebase
hg log