##// END OF EJS Templates
strip: drop deprecated -b from synopsis
strip: drop deprecated -b from synopsis

File last commit:

r11198:b345b1cc default
r11199:4b1f4e47 default
Show More
helpers.sh
17 lines | 519 B | application/x-sh | BashLexer
Matt Mackall
tests: add helpers.sh
r10774 #/bin/sh
hideport() { sed "s/localhost:$HGPORT/localhost:\$HGPORT/"; }
Matt Mackall
rebase: use helpers.sh in tests
r11198 repr() { python -c "import sys; print repr(sys.stdin.read()).replace('\\n', '\n')"; }
hidehex() { python -c 'import sys, re; print re.replace("\b[0-9A-Fa-f]{12,40}", "X" * 12)'; }
hidetmp() { sed "s/$HGTMP/\$HGTMP/"; }
Matt Mackall
tests: add helpers.sh
r10774
Matt Mackall
rebase: use helpers.sh in tests
r11198 hidebackup() { sed 's/\(saving bundle to \).*/\1/'; }
Matt Mackall
tests: add helpers.sh
r10774
Matt Mackall
rebase: use helpers.sh in tests
r11198 cleanrebase() {
sed -e 's/\(Rebase status stored to\).*/\1/' \
-e 's/\(Rebase status restored from\).*/\1/' \
-e 's/\(saving bundle to \).*/\1/';
}