svn - Using diffstat with subversion? -
Can someone give me an example, how can I use diffstat with subversion?
I mean, analyzing and producing statistics about one or more commits.
Note: Examples of the Linux command line are correct;)
You can simply pipe any difference to diffstat, for example, if you want a state of changes made in a specific modification, just get that change from svn and it diffstat the pipe .
$ svn diff -r1234: 1235 | Diffstat
You can explicitly create pipe in that svn, which includes the difference between the branches, tags and the folders and the range of modifications.
$ svn diff svn: // server / trunk svn: // server / tags / tag1 | Diffstat $ svn diff -r 1000: 2000 svn: // server / trunk / file1 | Diffstat
Comments
Post a Comment