diff options
author | Gerd Zanker | 2013-12-28 13:33:01 +0000 |
---|---|---|
committer | Matthias Sohn | 2014-04-02 13:01:43 +0000 |
commit | a466e17eee26dd5c1e107ca68639eee836f26a30 (patch) | |
tree | 8343d7e51da3e07ba39cbd0b9b5745061556e1c2 /org.eclipse.egit.mylyn.ui/plugin.xml | |
parent | 8bf175abbb5f5a7b8faf62b1958b3894dc6f67e7 (diff) | |
download | egit-a466e17eee26dd5c1e107ca68639eee836f26a30.tar.gz egit-a466e17eee26dd5c1e107ca68639eee836f26a30.tar.xz egit-a466e17eee26dd5c1e107ca68639eee836f26a30.zip |
Provide extensibility for suggesting branch names
* Add new extension point for branch name suggestions
* Add new extension to provide branch name suggestion from Mylyn task
This change is needed to enable the automatic creation and
checkout of branches based on the active task.
Bug: 309578
Change-Id: I9e26d668617481026c81a05b6ea08b97e28f620b
AlsoBy: Steffen Pingel <steffen.pingel@tasktop.com>
AlsoBy: Manuel Doninger <manuel.doninger@googlemail.com>
Signed-off-by: Steffen Pingel <steffen.pingel@tasktop.com>
Signed-off-by: Gerd Zanker <gerd.zanker@web.de>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.mylyn.ui/plugin.xml')
-rw-r--r-- | org.eclipse.egit.mylyn.ui/plugin.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.egit.mylyn.ui/plugin.xml b/org.eclipse.egit.mylyn.ui/plugin.xml index 474f84f45c..59036f9e65 100644 --- a/org.eclipse.egit.mylyn.ui/plugin.xml +++ b/org.eclipse.egit.mylyn.ui/plugin.xml @@ -28,4 +28,10 @@ targetId="org.eclipse.mylyn.tasks.ui.TaskEditor"> </hyperlinkDetector> </extension> + <extension + point="org.eclipse.egit.ui.branchNameProvider"> + <branchNameProvider + class="org.eclipse.egit.internal.mylyn.ui.commit.ActiveTaskBranchNameProvider"> + </branchNameProvider> + </extension> </plugin> |