Answers for "setup 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
0

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
0

how to set up git user

$ git config --global user.name
> Mona Lisa
Posted by: Guest on November-25-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language