Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDariusz Luksza2011-05-20 19:53:22 +0000
committerDariusz Luksza2011-05-20 19:54:14 +0000
commit32e5479b2e16dc3da212503f56a8efce08ba5d25 (patch)
treed6384b2b73ce2c6b1c8fa1f28256bf497ff90df6 /org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/actions/RebaseAction.java
parent2a690282841dc51b54e09f37aac2ac9688af945c (diff)
downloadegit-32e5479b2e16dc3da212503f56a8efce08ba5d25.tar.gz
egit-32e5479b2e16dc3da212503f56a8efce08ba5d25.tar.xz
egit-32e5479b2e16dc3da212503f56a8efce08ba5d25.zip
Add rebase button into git toolbar
Also improves formatting of toolbar section in plugin.xml Change-Id: I2cb10a5933f4fca730f617816b597b4889707a30 Signed-off-by: Dariusz Luksza <dariusz@luksza.org>
Diffstat (limited to 'org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/actions/RebaseAction.java')
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/actions/RebaseAction.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/actions/RebaseAction.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/actions/RebaseAction.java
new file mode 100644
index 0000000000..c34be48bdf
--- /dev/null
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/actions/RebaseAction.java
@@ -0,0 +1,27 @@
+/*******************************************************************************
+ * Copyright (C) 2011, Dariusz Luksza <dariusz@luksza.org>
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *******************************************************************************/
+package org.eclipse.egit.ui.internal.actions;
+
+import org.eclipse.egit.core.op.RebaseOperation;
+
+/**
+ * An action to rebase the current branch on top of selected one.
+ *
+ * @see RebaseOperation
+ */
+public class RebaseAction extends RepositoryAction {
+
+ /**
+ *
+ */
+ public RebaseAction() {
+ super(ActionCommands.REBASE_ACTION, new RebaseActionHandler());
+ }
+
+}

Back to the top