SVN how to automatically commit into multiple branches? -


i have 1.0, 1.1, 1.2 branches , want every commit goesw 1.0 go automatically 1.1 , 1.2 , every commit 1.1 go automatically committed 1.2

is possible make in single transaction , automatically? can tell me how please? (can example please?)

yes , no. can make atomic if checkout whole repository (or @ least branches folder). won't automatic though. have apply changes self other branches. different branches presumably have different code (you said version branches), applying same fix different branches may require different edits. can't (in general), avoid human intervention.

i challenge idea of making 1 transaction. adversely impact quality of history. made independant changed in many places. if make merging other branches separate transaction history better reflect did (making 1 change , porting it). there reason need edit branches in 1 transaction?


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -