Get Last file Commit Date from SVN

左心房为你撑大大i 提交于 2019-12-20 18:33:51

问题


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?


回答1:


svn info filename



回答2:


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




回答3:


Use this to export only the last changed date.

svn info filename | grep '^Last Changed Date:'| sed -e 's/^Last Changed Date: //'


来源:https://stackoverflow.com/questions/1798040/get-last-file-commit-date-from-svn

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!