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?
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?
svn info filename
svn log -vl1 filename-or-url
will give you the commit log for the last change that altered your file.
Use this to export only the last changed date.
svn info filename | grep '^Last Changed Date:'| sed -e 's/^Last Changed Date: //'