tests/test-annotate
changeset 4640 178778ca648f
parent 4361 46280c004f22
parent 4639 c7371aa0c153
child 4659 7a7d4937272b
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