CVS:在特定日期检查分支
CVS: Check out branch at specific date
我想在特定日期在 CVS 的特定分支上签出项目。
你知道我如何通过命令行执行此操作吗?
To get all files for a particular date on the branch, check out the
branchpoint and then update with all changes between the branchpoint
and the desired date. For example
BRANCH="gcc-3_2-branch"
DATE="2002-09-01"
cvs co -r ${BRANCH}point gcc
cvs up -d -j${BRANCH}point -j${BRANCH}:"${DATE}"
我想在特定日期在 CVS 的特定分支上签出项目。
你知道我如何通过命令行执行此操作吗?
To get all files for a particular date on the branch, check out the branchpoint and then update with all changes between the branchpoint and the desired date. For example
BRANCH="gcc-3_2-branch"
DATE="2002-09-01"
cvs co -r ${BRANCH}point gcc
cvs up -d -j${BRANCH}point -j${BRANCH}:"${DATE}"