From 2c59fa50387268462208300773bbafc6f407ba69 Mon Sep 17 00:00:00 2001 From: Kirill Likhodedov Date: Tue, 1 Nov 2016 20:36:28 +0300 Subject: [PATCH] Display git rename branch command in the VCS Console --- plugins/git4idea/src/git4idea/commands/GitImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/git4idea/src/git4idea/commands/GitImpl.java b/plugins/git4idea/src/git4idea/commands/GitImpl.java index 13c2d84c13c0..69592795f146 100644 --- a/plugins/git4idea/src/git4idea/commands/GitImpl.java +++ b/plugins/git4idea/src/git4idea/commands/GitImpl.java @@ -352,6 +352,7 @@ public class GitImpl implements Git { @NotNull String newName, @NotNull GitLineHandlerListener... listeners) { GitLineHandler h = new GitLineHandler(repository.getProject(), repository.getRoot(), GitCommand.BRANCH); + h.setSilent(false); h.setStdoutSuppressed(false); h.addParameters("-m", currentName, newName); return run(h); -- 2.23.3