From 4643f9028d81d4a498ec7fbffb1a5a7f7aa3dd88 Mon Sep 17 00:00:00 2001 From: Ronnel Santiago Date: Sun, 19 Nov 2023 22:17:07 +1100 Subject: [PATCH] removes git credential stuff --- new-win11.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/new-win11.ps1 b/new-win11.ps1 index 6e6ecfc..3086425 100644 --- a/new-win11.ps1 +++ b/new-win11.ps1 @@ -130,10 +130,6 @@ git config --global alias.l "log -n 20 --oneline" git config --global alias.lga "log --graph --oneline --all --decorate" git config --global alias.st "status" -Write-Host "Setting git credential manager" -ForegroundColor Magenta -git config --global credential.useHttpPath true -git config --global credential.helper wincred #https://code.visualstudio.com/docs/remote/troubleshooting#_sharing-git-credentials-between-windows-and-wsl - Write-Host "Setting VS Code as the Git editor" -ForegroundColor Magenta git config --global core.editor "code --wait"