Answers for "how configure git through git installation"

4

git setup

$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
$ git config --global push.default matching
$ git config --global alias.co checkout
$ git init
Posted by: Guest on June-02-2021
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