This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 252288

Summary: Switch multiple branches at once
Product: versioncontrol Reporter: webmaestro
Component: SubversionAssignee: Ondrej Vrabec <ovrabec>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.1   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

Description webmaestro 2015-05-07 16:01:34 UTC
I have multiple 'sub' repos within a repository (conf, html, lib, sites), each with their own set of tags, branches & trunk:

http://svn.example.com/repos/ent/conf/branches/
http://svn.example.com/repos/ent/conf/tags/
http://svn.example.com/repos/ent/conf/trunk/

http://svn.example.com/repos/ent/lib/branches/
http://svn.example.com/repos/ent/lib/tags/
http://svn.example.com/repos/ent/lib/trunk/

http://svn.example.com/repos/sites/example1/branches/
http://svn.example.com/repos/sites/example1/tags/
http://svn.example.com/repos/sites/example1/trunk/

Each of the above are added as a separate Project via `svn co`:

enterprise-conf
enterprise-lib
sites-example1


When coding a change requiring changes to multiple of these, we often create a single branch name, but apply it to multiple:

http://svn.example.com/repos/ent/conf/branches/cl-slideshow-20150707/

http://svn.example.com/repos/ent/lib/branches/cl-slideshow-20150707/

http://svn.example.com/repos/sites/example1/branches/cl-slideshow-20150707/

It'd be great to be able to execute an `svn switch` on them all at once:

Branch name:

branches/cl-slideshow-20150707

SVN Projects:

[x] enterprise-conf
[x] enterprise-lib
[x] sites-example1
[ ] sites-example2
[ ] sites-example3
[ ] sites-example4

;-)