Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wolf2022-03-29 17:24:18 +0000
committerThomas Wolf2022-04-02 22:00:37 +0000
commit379689e8e7e25353f3237b8f342e1e72bbeadc43 (patch)
treee403f85ec2a8823c9c3934fe5935baf521417200
parent9cefab837688da406c86c415bdc129f3c9baef43 (diff)
downloadegit-379689e8e7e25353f3237b8f342e1e72bbeadc43.tar.gz
egit-379689e8e7e25353f3237b8f342e1e72bbeadc43.tar.xz
egit-379689e8e7e25353f3237b8f342e1e72bbeadc43.zip
[team menu] Same item order as in the Git Repositories view
Move the "Push to Gerrit", "Fetch from Gerrit", and the "Fetch PR" menu items out of the "Remote" sub-menu into the "Team" menu directly. Bug: 579477 Change-Id: Iecc8e5e1a21f484904708e299ba149708798e413 Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
-rw-r--r--org.eclipse.egit.ui/plugin.xml120
1 files changed, 60 insertions, 60 deletions
diff --git a/org.eclipse.egit.ui/plugin.xml b/org.eclipse.egit.ui/plugin.xml
index fa6dfd64c3..93be2d2020 100644
--- a/org.eclipse.egit.ui/plugin.xml
+++ b/org.eclipse.egit.ui/plugin.xml
@@ -5700,6 +5700,66 @@
</test>
</visibleWhen>
</command>
+ <command
+ commandId="org.eclipse.egit.ui.PushHeadToGerrit"
+ label="%PushToGerritMenu.label"
+ style="push">
+ <visibleWhen
+ checkEnabled="false">
+ <test
+ property="GitSelection.projectsSingleRepository"
+ args="canPushToGerrit">
+ </test>
+ </visibleWhen>
+ </command>
+ <command
+ commandId="org.eclipse.egit.ui.FetchGerritChange"
+ label="%FetchFromGerritCommand.label"
+ style="push">
+ <visibleWhen
+ checkEnabled="false">
+ <test
+ property="GitSelection.projectsSingleRepository"
+ args="canFetchFromGerrit">
+ </test>
+ </visibleWhen>
+ </command>
+ <command
+ commandId="org.eclipse.egit.ui.FetchGithubPR"
+ label="%FetchFromGithubCommand.label"
+ style="push">
+ <visibleWhen
+ checkEnabled="false">
+ <test
+ property="GitSelection.projectsSingleRepository"
+ args="hasGithubConfiguration">
+ </test>
+ </visibleWhen>
+ </command>
+ <command
+ commandId="org.eclipse.egit.ui.FetchGitlabMergeRequest"
+ label="%FetchFromGitlabCommand.label"
+ style="push">
+ <visibleWhen
+ checkEnabled="false">
+ <test
+ property="GitSelection.projectsSingleRepository"
+ args="hasGitlabConfiguration">
+ </test>
+ </visibleWhen>
+ </command>
+ <command
+ commandId="org.eclipse.egit.ui.FetchGiteaPullRequest"
+ label="%FetchFromGiteaCommand.label"
+ style="push">
+ <visibleWhen
+ checkEnabled="false">
+ <test
+ property="GitSelection.projectsSingleRepository"
+ args="hasGiteaConfiguration">
+ </test>
+ </visibleWhen>
+ </command>
<dynamic
class="org.eclipse.egit.ui.internal.actions.PushMenu"
id="org.eclipse.egit.ui.team.popup.Push">
@@ -5754,66 +5814,6 @@
label="%FetchAction_label"
style="push">
</command>
- <command
- commandId="org.eclipse.egit.ui.PushHeadToGerrit"
- label="%PushToGerritMenu.label"
- style="push">
- <visibleWhen
- checkEnabled="false">
- <test
- property="GitSelection.projectsSingleRepository"
- args="canPushToGerrit">
- </test>
- </visibleWhen>
- </command>
- <command
- commandId="org.eclipse.egit.ui.FetchGerritChange"
- label="%FetchFromGerritCommand.label"
- style="push">
- <visibleWhen
- checkEnabled="false">
- <test
- property="GitSelection.projectsSingleRepository"
- args="canFetchFromGerrit">
- </test>
- </visibleWhen>
- </command>
- <command
- commandId="org.eclipse.egit.ui.FetchGithubPR"
- label="%FetchFromGithubCommand.label"
- style="push">
- <visibleWhen
- checkEnabled="false">
- <test
- property="GitSelection.projectsSingleRepository"
- args="hasGithubConfiguration">
- </test>
- </visibleWhen>
- </command>
- <command
- commandId="org.eclipse.egit.ui.FetchGitlabMergeRequest"
- label="%FetchFromGitlabCommand.label"
- style="push">
- <visibleWhen
- checkEnabled="false">
- <test
- property="GitSelection.projectsSingleRepository"
- args="hasGitlabConfiguration">
- </test>
- </visibleWhen>
- </command>
- <command
- commandId="org.eclipse.egit.ui.FetchGiteaPullRequest"
- label="%FetchFromGiteaCommand.label"
- style="push">
- <visibleWhen
- checkEnabled="false">
- <test
- property="GitSelection.projectsSingleRepository"
- args="hasGiteaConfiguration">
- </test>
- </visibleWhen>
- </command>
<separator
name="org.eclipse.egit.ui.remote.group1"
visible="true">

Back to the top