Answers for "git cli switch user"

4

git cli switch user

NAME=userName
EMAIL=email

git config --global user.name $NAME &&
git config --global user.email $EMAIL &&
git config credential.username $NAME &&
git config credential.email $EMAIL

git config --global --list
Posted by: Guest on January-19-2022
0

change git account terminal

git config --list
git config --global user.name "Full Name"
git config --global user.email "[email protected]"
Posted by: Guest on April-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language