Get Last file Commit Date from SVN

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?

3条回答
相关推荐>>
2楼-- · 2019-03-18 03:24
svn info filename
查看更多
贪生不怕死
3楼-- · 2019-03-18 03:28

Use this to export only the last changed date.

svn info filename | grep '^Last Changed Date:'| sed -e 's/^Last Changed Date: //'
查看更多
成全新的幸福
4楼-- · 2019-03-18 03:34

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

查看更多
登录 后发表回答