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 - Switch multiple branches at once
Summary: Switch multiple branches at once
Status: NEW
Alias: None
Product: versioncontrol
Classification: Unclassified
Component: Subversion (show other bugs)
Version: 8.1
Hardware: All All
: P3 normal (vote)
Assignee: Ondrej Vrabec
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-05-07 16:01 UTC by webmaestro
Modified: 2015-05-07 16:01 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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

;-)