fix: stash issues

This commit is contained in:
Bjarke Sporring
2026-01-15 16:37:57 +01:00
parent cdd695b250
commit b0d2d43c8b
3 changed files with 283 additions and 87 deletions

View File

@@ -158,7 +158,7 @@ Write-Host "`nYour task:" -ForegroundColor Yellow
Write-Host "1. Navigate to the challenge directory: cd challenge" -ForegroundColor White
Write-Host "2. Check your status: git status (see uncommitted changes)" -ForegroundColor White
Write-Host "3. Stash your work: git stash save 'WIP: login feature'" -ForegroundColor White
Write-Host "4. Switch to $mainBranch: git checkout $mainBranch" -ForegroundColor White
Write-Host "4. Switch to ${mainBranch}: git checkout $mainBranch" -ForegroundColor White
Write-Host "5. Fix the security bug in app.py (remove the comment and fix the auth)" -ForegroundColor White
Write-Host "6. Commit the fix: git add app.py && git commit -m 'Fix critical security bug'" -ForegroundColor White
Write-Host "7. Switch back: git checkout feature-login" -ForegroundColor White