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

后端 未结 9 1997
闹比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:39

    You could use git-svn to import the repository into a Git repository, then use git log -p filename. This shows each log entry for the file followed by the corresponding diff.

提交回复
热议问题