公告
财富商城
积分规则
提问
发文
2019-03-18 02:46发布
贪生不怕死
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
Use this to export only the last changed date.
svn info filename | grep '^Last Changed Date:'| sed -e 's/^Last Changed Date: //'
svn log -vl1 filename-or-url will give you the commit log for the last change that altered your file.
svn log -vl1 filename-or-url
最多设置5个标签!
Use this to export only the last changed date.
svn log -vl1 filename-or-url
will give you the commit log for the last change that altered your file.