##// END OF EJS Templates
cleanup: use () to wrap long lines instead of \...
cleanup: use () to wrap long lines instead of \ This is a little less brittle, and often helps indentation. In a surprising number of cases the entire cleanup was deleting the \, as the expression was *already* parenthesized in a workable way. Differential Revision: https://phab.mercurial-scm.org/D5993

File last commit:

r40226:31dfa7da default
r41925:aaad36b8 default
Show More
test-absorb-phase.t
30 lines | 389 B | text/troff | Tads3Lexer
/ tests / test-absorb-phase.t
Augie Fackler
absorb: import extension from Facebook's hg-experimental...
r38953 $ cat >> $HGRCPATH << EOF
> [extensions]
> absorb=
Augie Fackler
tests: fix a couple of drawdag.py references...
r39703 > drawdag=$TESTDIR/drawdag.py
Augie Fackler
absorb: import extension from Facebook's hg-experimental...
r38953 > EOF
$ hg init
$ hg debugdrawdag <<'EOS'
> C
> |
> B
> |
> A
> EOS
$ hg phase -r A --public -q
$ hg phase -r C --secret --force -q
$ hg update C -q
$ printf B1 > B
Mark Thomas
absorb: prompt user to accept absorb changes by default...
r40226 $ hg absorb -aq
Augie Fackler
absorb: import extension from Facebook's hg-experimental...
r38953
$ hg log -G -T '{desc} {phase}'
@ C secret
|
o B draft
|
o A public