How can I view all historical changes to a file in SVN

后端 未结 9 1985
闹比i
闹比i 2020-12-02 04:08

I know that I can svn diff -r a:b repo to view the changes between the two specified revisions. What I\'d like is a diff for every revision that changed the

9条回答
  •  爱一瞬间的悲伤
    2020-12-02 04:24

    I've seen a bunch of partial answers while researching this topic. This is what worked for me and hope it helps others. This command will display output on the command line, showing the revision number, author, revision timestamp and changes made:

    svn blame -v 
    

    To make your search easier, you can write the output to a file and grep for what you're looking for.

提交回复
热议问题