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}`)