Using diffstat with subversion?
问题 Could anyone give me examples, how I could use diffstat with subversion? I mean, using diffstat to analyze and produce statistics about one or multiple commits. NOTE: Linux commandline examples are OK ;) 回答1: You can simply pipe any diff to diffstat. For example, if you want a stat of the changes made in a specific revision, just retrieve that change from svn and pipe it to diffstat. $ svn diff -r1234:1235 | diffstat You can obviously pipe anything in that svn can create diffs of, which