Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Pfeifer2013-09-25 09:47:58 +0000
committerMatthias Sohn2013-11-05 17:10:33 +0000
commitd4f1d3ad001049908d8a12a3f5441c292ac51128 (patch)
tree9c607390d32b68c0a43531027c8ff025c71d0382 /org.eclipse.egit.ui/plugin.xml
parent5a858378b7d6d59af1fd3bc9ad52ffab78ef3886 (diff)
downloadegit-d4f1d3ad001049908d8a12a3f5441c292ac51128.tar.gz
egit-d4f1d3ad001049908d8a12a3f5441c292ac51128.tar.xz
egit-d4f1d3ad001049908d8a12a3f5441c292ac51128.zip
Add context menu entry for rebase interactive to history view
The interactive handler does not make any changes to the rebase todo file yet. So far interactive rebase behaves exactly the same as the "rebase on top of" action. Change-Id: I58a9a9f0829bc3576342cc04c9ce8836999d442b Signed-off-by: Tobias Pfeifer <to.pfeifer@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.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui/plugin.xml b/org.eclipse.egit.ui/plugin.xml
index 32f8df18bb..a84540ee93 100644
--- a/org.eclipse.egit.ui/plugin.xml
+++ b/org.eclipse.egit.ui/plugin.xml
@@ -5145,6 +5145,11 @@
name="%RebaseCurrentCommand.name">
</command>
<command
+ defaultHandler="org.eclipse.egit.ui.internal.history.command.RebaseInteractiveCurrentHandler"
+ id="org.eclipse.egit.ui.RebaseInteractiveCurrent"
+ name="%RebaseInteractiveCurrentHandler.name">
+ </command>
+ <command
defaultHandler="org.eclipse.egit.ui.internal.history.command.OpenInCommitViewerHandler"
id="org.eclipse.egit.ui.history.OpenInCommitViewerCommand"
name="%OpenInCommitViewerCommand.name">

Back to the top