Answers for "setup new user in git"

1

git setup local user

git config user.name "Your Name Here"
git config user.email [email protected]

Or Global
git config --global user.name "Your Name Here"
git config --global user.email [email protected]
Posted by: Guest on February-05-2021
1

setup user in git

git config --global user.name "Your Name Here"
git config --global user.email [email protected]
Posted by: Guest on July-18-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language