Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading svn commit messages from the console

Tags:

What's the command line way to get the commit messages for a given revision?

like image 925
pythonic metaphor Avatar asked Nov 27 '10 21:11

pythonic metaphor


People also ask

How can I see svn commits?

To find information about the history of a file or directory, use the svn log command. svn log will provide you with a record of who made changes to a file or directory, at what revision it changed, the time and date of that revision, and, if it was provided, the log message that accompanied the commit.

What is the use of svn commit command?

svn commit will send any lock tokens that it finds and will release locks on all PATH s committed (recursively) unless --no-unlock is passed. If you begin a commit and Subversion launches your editor to compose the commit message, you can still abort without committing your changes.


1 Answers

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
like image 162
pyfunc Avatar answered Oct 08 '22 00:10

pyfunc