Is there an equivalent of git log -p
using the svn command line tool? svn log -v
shows file names but not changes.
I would like to see the patches introduced by prior commits. If not possible, is there a way to get the patch (not compared to head, just the changeset) introduced by a single previous commit?
svn log --diff
is the equivalent of git log -p
.
For a single revision you can use svn diff -c <revision>
which in git would be git show <revision>
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With