开发者

Reading svn commit messages from the console

开发者 https://www.devze.com 2023-01-27 00:58 出处:网络
What\'s the command line way to get the commi开发者_StackOverflowt messages for a given revision?svn log — Display commit log messages. This should work with the switch -r or --revision to display co

What's the command line way to get the commi开发者_StackOverflowt messages for a given revision?


svn log — Display commit log messages. This should work with the switch -r or --revision to display commit message for a particular revision

svn log --revision 16
  • http://svnbook.red-bean.com/en/1.0/re15.html


Once I needed to display log message on the SVN server side (in my svn hook) by a given repository path on the computer. For this case you can use:

 svnlook -r 105 log C:\Repositories\unit-tests-repo

I know, that you asked the question 8 years ago, but probably my answer can help another people.

0

精彩评论

暂无评论...
验证码 换一张
取 消