From b99f9d0abab65214fe4f1812f7d2cd23f281460e Mon Sep 17 00:00:00 2001
From: Vallie Joseph <vmjoseph@github.com>
Date: Thu, 1 Dec 2022 15:52:47 +0000
Subject: [PATCH] .

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

diff --git a/dist/index.js b/dist/index.js
index f7b14bc..54cd2c4 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -7389,6 +7389,7 @@ class GitCommandManager {
         return __awaiter(this, void 0, void 0, function* () {
             const result = [];
             const stderr = [];
+            core.info(this.gitEnv['GIT_HTTP_USER_AGENT']);
             // Note, this implementation uses "rev-parse --symbolic-full-name" because the output from
             // "branch --list" is more difficult when in a detached HEAD state.
             // Note, this implementation uses "rev-parse --symbolic-full-name" because there is a bug
diff --git a/src/git-command-manager.ts b/src/git-command-manager.ts
index 2a0b588..4c86e65 100644
--- a/src/git-command-manager.ts
+++ b/src/git-command-manager.ts
@@ -94,6 +94,7 @@ class GitCommandManager {
     const result: string[] = []
     const stderr: string[] = []
 
+    core.info(this.gitEnv['GIT_HTTP_USER_AGENT'])
     // Note, this implementation uses "rev-parse --symbolic-full-name" because the output from
     // "branch --list" is more difficult when in a detached HEAD state.
     // Note, this implementation uses "rev-parse --symbolic-full-name" because there is a bug