fix: use switch and not checkout

This commit is contained in:
Bjarke Sporring
2026-01-07 22:04:44 +01:00
parent f48eefee10
commit c057fd617b
2 changed files with 4 additions and 4 deletions

View File

@@ -60,7 +60,7 @@ git add config.json
git commit -m "Add timeout configuration" | Out-Null
# Switch to feature branch: Add debug setting (conflicting change)
git checkout update-config | Out-Null
git switch update-config | Out-Null
$featureConfig = @"
{
@@ -78,7 +78,7 @@ git add config.json
git commit -m "Add debug mode configuration" | Out-Null
# Switch back to main branch
git checkout main | Out-Null
git switch main | Out-Null
# Return to module directory
Set-Location ..