tests/test-annotate
changeset 4639 c7371aa0c153
parent 3404 2e1d8b238b6c
child 4640 178778ca648f
equal deleted inserted replaced
4638:3c7fc13c4bfa 4639:c7371aa0c153
    72 echo % annotate after rename merge
    72 echo % annotate after rename merge
    73 hg annotate -nf b
    73 hg annotate -nf b
    74 
    74 
    75 echo % linkrev vs rev
    75 echo % linkrev vs rev
    76 hg annotate -r tip a
    76 hg annotate -r tip a
       
    77 
       
    78 # test issue 589
       
    79 # annotate was crashing when trying to --follow something 
       
    80 # like A -> B -> A
       
    81 echo % generate ABA rename configuration
       
    82 echo foo > foo
       
    83 hg add foo
       
    84 hg ci -m addfoo
       
    85 hg rename foo bar
       
    86 hg ci -m renamefoo
       
    87 hg rename bar foo
       
    88 hg ci -m renamebar
       
    89 
       
    90 echo % annotate after ABA with follow
       
    91 hg annotate --follow foo
       
    92