Subversion same revision for tagging or committing multiple projects
- by cubanacan
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