version control - Different Revision Increment in one SVN Repository -


how make branch have different revision increment in 1 repository

example:

repo ----master      |      ----trunk 

when commit on trunk 5 times , merge master

the result:

repo ----master (rev:1)      |      ----trunk (rev:5) 

and commit on trunk 4 times , merge master

the result:

repo ----master (rev:2)      |      ----trunk (rev:9) 

can done in svn?

no. these revision numbers internal id svn identify revisions. if don't change code @ all, svn-properties get's it's own revision-number. svn doesn't allow user set revision number commit , frankly don't see need this. if want make such counts, have independently svn.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -