Mercurial > hg
comparison tests/test-annotate @ 4640:178778ca648f
Merge with crew-stable
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Wed, 20 Jun 2007 00:22:51 +0200 |
parents | 46280c004f22 c7371aa0c153 |
children | 7a7d4937272b |
comparison
equal
deleted
inserted
replaced
4635:63b9d2deed48 | 4640:178778ca648f |
---|---|
74 echo % annotate after rename merge | 74 echo % annotate after rename merge |
75 hg annotate -nf b | 75 hg annotate -nf b |
76 | 76 |
77 echo % linkrev vs rev | 77 echo % linkrev vs rev |
78 hg annotate -r tip a | 78 hg annotate -r tip a |
79 | |
80 # test issue 589 | |
81 # annotate was crashing when trying to --follow something | |
82 # like A -> B -> A | |
83 echo % generate ABA rename configuration | |
84 echo foo > foo | |
85 hg add foo | |
86 hg ci -m addfoo | |
87 hg rename foo bar | |
88 hg ci -m renamefoo | |
89 hg rename bar foo | |
90 hg ci -m renamebar | |
91 | |
92 echo % annotate after ABA with follow | |
93 hg annotate --follow foo | |
94 |