git global setup code example
Example 1: git user.name user.email
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Example 2: set email git
git config --global user.email "[email protected]"
Example 3: set username git
git config --global user.name "My Name"
Example 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
Example 5: git config
$ git config --list --show-origin
Example 6: git config
Open the command line.
Set your username: git config --global user.name "FIRST_NAME LAST_NAME"
Set your email address: git config --global user.email "[email protected]"