From 78f26689ac7c409b76d140e54e890bd9c433af94 Mon Sep 17 00:00:00 2001 From: "Ilia.Shulgin" Date: Wed, 16 Oct 2024 18:11:08 +0200 Subject: [PATCH] [git] IJPL-84816 Add "Unshallow Repository" action to Git main menu group and VCS pop-up GitOrigin-RevId: e713d0ccf39a881b701c4bdca9397137d45e1561 --- plugins/git4idea/resources/intellij.vcs.git.xml | 3 ++- .../src/git4idea/actions/GitQuickListContentProvider.java | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/git4idea/resources/intellij.vcs.git.xml b/plugins/git4idea/resources/intellij.vcs.git.xml index 33b75e90366b..370823e258e6 100644 --- a/plugins/git4idea/resources/intellij.vcs.git.xml +++ b/plugins/git4idea/resources/intellij.vcs.git.xml @@ -114,6 +114,7 @@ + @@ -518,7 +519,7 @@ - + diff --git a/plugins/git4idea/src/git4idea/actions/GitQuickListContentProvider.java b/plugins/git4idea/src/git4idea/actions/GitQuickListContentProvider.java index f3da85611e37..925e030421d2 100644 --- a/plugins/git4idea/src/git4idea/actions/GitQuickListContentProvider.java +++ b/plugins/git4idea/src/git4idea/actions/GitQuickListContentProvider.java @@ -27,6 +27,8 @@ public class GitQuickListContentProvider extends DvcsQuickListContentProvider { add("ChangesView.AddUnversioned", manager, actions); add("Git.ResolveConflicts", manager, actions); + + add("Git.Unshallow", manager, actions); return actions; }