Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Stocker2013-08-13 20:12:56 +0000
committerMatthias Sohn2013-09-12 20:21:25 +0000
commitf1198835c0325bdab6e838d8f1323e0a4948876b (patch)
treeaedc366cc5128d82a9514145b62d99869aba3e96
parent6c1705dcf55ac49e4c24030b097185b28a1447ac (diff)
downloadegit-f1198835c0325bdab6e838d8f1323e0a4948876b.tar.gz
egit-f1198835c0325bdab6e838d8f1323e0a4948876b.tar.xz
egit-f1198835c0325bdab6e838d8f1323e0a4948876b.zip
Reorder menu entries in Team > Remote to correspond to repo view
Make it "Push, Fetch, Pull" as in the repo view. This also corresponds to the toolbar and Git menu order. Changing the order of "Push to Upstream" and others in the Team menu is in the next change. Change-Id: Id62a0e34f44d0b435ea6e4982d5fb7f2eb5f1000 Signed-off-by: Robin Stocker <robin@nibor.org> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.egit.ui/plugin.xml24
1 files changed, 12 insertions, 12 deletions
diff --git a/org.eclipse.egit.ui/plugin.xml b/org.eclipse.egit.ui/plugin.xml
index 2939f51feb..d9e7673f4f 100644
--- a/org.eclipse.egit.ui/plugin.xml
+++ b/org.eclipse.egit.ui/plugin.xml
@@ -3645,18 +3645,18 @@
<menu
label="%RemoteSubMenu.label">
<command
- commandId="org.eclipse.egit.ui.team.Fetch"
- label="%FetchAction_label"
+ commandId="org.eclipse.egit.ui.team.Push"
+ label="%PushAction_label"
style="push">
</command>
<command
- commandId="org.eclipse.egit.ui.team.Push"
- label="%PushAction_label"
+ commandId="org.eclipse.egit.ui.team.Fetch"
+ label="%FetchAction_label"
style="push">
</command>
<command
- commandId="org.eclipse.egit.ui.FetchGerritChange"
- label="%FetchFromGerritCommand.label"
+ commandId="org.eclipse.egit.ui.PushHeadToGerrit"
+ label="%PushToGerritMenu.label"
style="push">
<visibleWhen
checkEnabled="false">
@@ -3679,8 +3679,8 @@
</visibleWhen>
</command>
<command
- commandId="org.eclipse.egit.ui.PushHeadToGerrit"
- label="%PushToGerritMenu.label"
+ commandId="org.eclipse.egit.ui.FetchGerritChange"
+ label="%FetchFromGerritCommand.label"
style="push">
<visibleWhen
checkEnabled="false">
@@ -3707,13 +3707,13 @@
visible="true">
</separator>
<command
- commandId="org.eclipse.egit.ui.ConfigureUpstreamFetch"
- label="%ConfigureFetchFromUpstreamCommand.label"
+ commandId="org.eclipse.egit.ui.ConfigureUpstreamPush"
+ label="%ConfigurePushToUpstreamCommand.label"
style="push">
</command>
<command
- commandId="org.eclipse.egit.ui.ConfigureUpstreamPush"
- label="%ConfigurePushToUpstreamCommand.label"
+ commandId="org.eclipse.egit.ui.ConfigureUpstreamFetch"
+ label="%ConfigureFetchFromUpstreamCommand.label"
style="push">
</command>
<visibleWhen

Back to the top