> To build a particular version of file123.exe:
>
> file123.exe[1.3] = file1.c[1.1] + file2.c[1.2] + file3.c[1.3]
> file123.exe[1.2] = file1.c[1.1] + file2.c[1.1] + file3.c[1.2]
> file123.exe[1.1] = file1.c[1.1] + file2.c[1.1] + file3.c[1.1]
>
> How do I perform a code-freeze such that I can retrieve all the
> particular versions of all the files needed to build file123.exe[1.2] ?
>
Asif,
when a change is commited, the entire repository gets a revision
number. so even if file3.c is the only file commited as revision, say,
5, then you can check the entire project out at -r5 and get the other
files as they were at the time of the file3.c commit
to get a extra copy: svn checkout -r5 url/path/to/proj proj-r5
or update your current wc to r5: svn update -r5
warning: i am pretty new to svn, use this advice with caution.
hope this helps.
pizza
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Aug 24 23:51:54 2004