History of changes to a particular line of code in Subversion

前端 未结 11 2067
轮回少年
轮回少年 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

    A start is the command svn blame (or annotate,praise). It will show you when a line of code was last modified and by whom it was modified. e.g.:

      4564    wiemann # $Id$
      4564    wiemann # Author: David Goodger 
       778    goodger # Copyright: This module has been placed in the public domain.
       217    goodger 
    

提交回复
热议问题