Created
May 11, 2023 11:05
Revisions
-
wilcorrea created this gist
May 11, 2023 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ @echo off git config --system --unset credential.helper git config --global --unset credential.helper git config --global credential.modalprompt false git config --global init.defaultbranch main git config --global pull.rebase true set /p "email=Enter Email: " git config --global user.email "%email%" set /p "name=Enter Name: " git config --global user.name "%name%" @echo on git config --system --list git config --global --list