Hi! Thanks for visiting my blog. If you've received any value from my content would you mind supporting my new startup by downloading our browser add-on? It's called PriceBlink and makes online shopping a breeze. You can watch it in action here and download it for Chrome, Firefox, IE, or Safari by going to PriceBlink.com. Thank you and I hope you enjoy!

SVN List Comment and Files Changed for a Certain Revision

Aug 18

I’m spending a lot of time with the SVN command line right now because we’re trying to get a product release out the door. One thing that I’ve found handy is the ability to get the comments and list of files changed for a certain revision number. This is fairly commonplace for SVN GUI tools, but it took me a bit to find out how to do this via command line. Here’s how you do it:

svn log -v -r 7447 https://yoursvnurl.com

You can remove the URL if you’re running this command from your local copy.

3 comments

  1. Many thanks, this helped a lot! Been searching for this all morning, very useful indeed :)

  2. Arvind /

    svn diff -r :HEAD –summarize

    REVNO = Revision number

    this will be more useful.

  3. I guess you can try svn log [url]. This works for me.

Leave a Reply