From ad350781d497d66e40ea1ea3b786c460a2a53097 Mon Sep 17 00:00:00 2001
From: eric sciple <ericsciple@users.noreply.github.com>
Date: Mon, 13 Apr 2020 15:09:52 -0400
Subject: [PATCH] fetch verbose

---
 dist/index.js              | 3 ++-
 src/git-command-manager.ts | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dist/index.js b/dist/index.js
index 2fcc800..d64ae6f 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -5560,7 +5560,8 @@ class GitCommandManager {
                 '--no-tags',
                 '--prune',
                 '--progress',
-                '--no-recurse-submodules'
+                '--no-recurse-submodules',
+                '--verbose'
             ];
             if (fetchDepth > 0) {
                 args.push(`--depth=${fetchDepth}`);
diff --git a/src/git-command-manager.ts b/src/git-command-manager.ts
index 4cbfe4a..339d457 100644
--- a/src/git-command-manager.ts
+++ b/src/git-command-manager.ts
@@ -172,7 +172,8 @@ class GitCommandManager {
       '--no-tags',
       '--prune',
       '--progress',
-      '--no-recurse-submodules'
+      '--no-recurse-submodules',
+      '--verbose'
     ]
     if (fetchDepth > 0) {
       args.push(`--depth=${fetchDepth}`)