Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Last file Commit Date from SVN

Noob to Subversion, so please bear with me.

Is there a way to get the last commit date for a file from the command line?

like image 862
JoelHess Avatar asked Nov 25 '09 16:11

JoelHess


People also ask

How can I see svn commit history?

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.

Where is svn history stored?

They are stored in the svn:log property. You can add the --revprop flag to the various property commands to view & edit this property.

How do I view svn history in eclipse?

Window -> Preferences -> Team -> SVN -> Default number of log messages. Or you can press the ">|" button to see the complete history.

Is out of date svn commit failed?

An svn commit of the file will fail with an “out-of-date” error. The file should be updated first; an svn update command will attempt to merge the public changes with the local changes. If Subversion can't complete the merge in a plausible way automatically, it leaves it to the user to resolve the conflict.


1 Answers

svn info filename
like image 88
David M Avatar answered Oct 15 '22 00:10

David M