Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Zanker2013-12-28 13:33:01 +0000
committerMatthias Sohn2014-04-02 13:01:43 +0000
commita466e17eee26dd5c1e107ca68639eee836f26a30 (patch)
tree8343d7e51da3e07ba39cbd0b9b5745061556e1c2 /org.eclipse.egit.ui/plugin.xml
parent8bf175abbb5f5a7b8faf62b1958b3894dc6f67e7 (diff)
downloadegit-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.ui/plugin.xml')
-rw-r--r--org.eclipse.egit.ui/plugin.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui/plugin.xml b/org.eclipse.egit.ui/plugin.xml
index b887e71a2a..8d55a16d5c 100644
--- a/org.eclipse.egit.ui/plugin.xml
+++ b/org.eclipse.egit.ui/plugin.xml
@@ -3,6 +3,7 @@
<plugin>
<extension-point id="commitMessageProvider" name="%CommitMessageProviderExtension-point.name" schema="schema/commitMessageProvider.exsd"/>
<extension-point id="cloneSourceProvider" name="%CloneSourceProviderExtension-point.name" schema="schema/cloneSourceProvider.exsd"/>
+ <extension-point id="branchNameProvider" name="%BranchNameProviderExtension-point.name" schema="schema/branchNameProvider.exsd"/>
<extension point="org.eclipse.core.runtime.preferences">
<initializer class="org.eclipse.egit.ui.PluginPreferenceInitializer"/>
</extension>

Back to the top