Answers for "git configure in terminal"

3

configure git

//add username
git config --global user.name "your_username"

//add email
git config --global user.email "[email protected]"

//check configuration
git config --global --list
Posted by: Guest on July-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language