svn 相關經驗 svn checkout with commit times (keep original timestamp)

来源:互联网 发布:php 访问者模式 编辑:程序博客网 时间:2024/06/08 05:09

svn checkout with commit times (keep original timestamp)

svn co --config-option config:miscellany:use-commit-times=yes svnserverip/projectname

ex: svn co --config-option config:miscellany:use-commit-times=yes svn://IP/PATH/TO/PROJECTNAME

This is documented in the output of svn help co.


# 抓第1000版的 projcets code

svn co -r 1000 svn://IP/PATH/TO/PROJECTNAME


0 0