History of changes to a particular line of code in Subversion

前端 未结 11 2058
轮回少年
轮回少年 2020-12-02 22:05

Is it possible to see the history of changes to a particular line of code in a Subversion repository?

I\'d like, for instance, to be able to see when a particular st

11条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-02 22:29

    In the TortoiseSVN client there is a very nice feature that lets you:

    • blame a file, displaying the last change for each line (this is standard)
    • "blame previous revision", after clicking on a particular line in the above view (this is the good one)

    The second feature does what it says - it shows the annotated revision preceding the last modification to the line. By using this feature iteratively, you can trace back through the history of a particular line.

提交回复
热议问题