Subversion same revision for tagging or committing multiple projects
Posted
by cubanacan
on Stack Overflow
See other posts from Stack Overflow
or by cubanacan
Published on 2010-03-17T11:39:41Z
Indexed on
2010/03/17
11:41 UTC
Read the original article
Hit count: 170
subversion
How to make tags for multiple projects within one revision?
For example, if it needs to tag with the same name:
svn copy svn://localhost/BigProject/Project1/trunk svn://localhost/BigProject/Project1/tags/1.0.0 --message "1.0.0"
svn copy svn://localhost/BigProject/Project2/trunk svn://localhost/BigProject/Project2/tags/1.0.0 --message "1.0.0"
...
svn copy svn://localhost/BigProject/ProjectX/trunk svn://localhost/BigProject/ProjectX/tags/1.0.0 --message "1.0.0"
But that snippet makes X revisions. So, how to make just one revision or how to integrate all in one?
Another question is, how to commit similar modifications within one revision?
TIA
© Stack Overflow or respective owner