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
Edition for better understanding reasons:
- Tag revision number is used in the versions of the projects. So, in that case above, all projects have different versions with the same tag.
- Different version is needed only when specific modification was done just for one project. It is forcing to add fourth octet to the version number.
- Yearning to reduce repeated X times log messages for entire BigProject.