From a90f7ab143e60ea3b2c409d4575f9e5a0d6329a4 Mon Sep 17 00:00:00 2001 From: Kevin Minehart Date: Fri, 8 Nov 2024 09:18:01 -0600 Subject: [PATCH] git config list --- backport/cherrypick.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backport/cherrypick.go b/backport/cherrypick.go index b2e69f9..e85aba6 100644 --- a/backport/cherrypick.go +++ b/backport/cherrypick.go @@ -31,6 +31,7 @@ func CreateCherryPickBranch(ctx context.Context, runner CommandRunner, branch st runner.Run(ctx, "ls", "-al") runner.Run(ctx, "git", "status") runner.Run(ctx, "git", "remote", "-v") + runner.Run(ctx, "git", "config", "list") if _, err := runner.Run(ctx, "git", "fetch"); err != nil { return fmt.Errorf("error fetching: %w", err) }