From 56095f06d2b4b6f29b92dc3f4421da59f66a840b Mon Sep 17 00:00:00 2001 From: LifeIsAnAbstraction <87593980+B-SRIKRISHNAN@users.noreply.github.com> Date: Wed, 11 Mar 2026 02:11:27 +0530 Subject: [PATCH] fix: use quiet checkout to avoid exception on git checkout (#1792) --- scripts/powershell/create-new-feature.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/powershell/create-new-feature.ps1 b/scripts/powershell/create-new-feature.ps1 index 8f88b6c5..172b5bc7 100644 --- a/scripts/powershell/create-new-feature.ps1 +++ b/scripts/powershell/create-new-feature.ps1 @@ -250,7 +250,7 @@ if ($branchName.Length -gt $maxBranchLength) { if ($hasGit) { $branchCreated = $false try { - git checkout -b $branchName 2>$null | Out-Null + git checkout -q -b $branchName 2>$null | Out-Null if ($LASTEXITCODE -eq 0) { $branchCreated = $true }