views:

311

answers:

2

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?

+5  A: 
svn info filename
David M
This will give the last changed info for the checked out <filename> which could be different from the repository file if you've checked out a specific revision/date. To be safe, give the URL of the file and you'll get the last changed info for the repository file.
shank
+1  A: 

svn log -vl1 filename-or-url will give you the commit log for the last change that altered your file.

Ether