version control - Versioning in SVN -
i have situation track versions of of folders in project. let's assume following svn structure
branch name let's branch. pattern of directories - [topfolder/subfolder1/subfolder2..]
a/a1/a2/a3
b
c
d
e
f
g/g1
e/e1/e2
f
i want make sure when run tool let's resides in directory f - should pick code g, e & c. , should not pick latest code, blessed qa code i.e. svn revision each of folder.
one solution track svn revisions of g, e & c qa blessed , svn them revision before running tool.
another solution that
1. create branch branch_1 has things qa blessed.
2. run tool branch_1. no need svn since latest greatest.
3. make code changes branch feel like
4. once branch has been qa'ed, sync branch_1 branch. branch_1 not usable while sync in process.
i want hear few other ideas can cleaner , more robust? may 1 doesn't have create branches , then.
i want make sure when run tool let's resides in directory f - should pick code g, e & c. , should not pick latest code - blessed qa code.
i have difficult time understanding question. however, might want use svn:externals point g, e, , c directories f directory. can (and in fact should) point svn:external particular revision of other directories. example, use -r option specify particular revision or point tag.
would you?
Comments
Post a Comment