Shell/Bash: git config username Example
Shell/Bash Example: This is the "git config username" Example. compiled from many sources on the internet by SimpleTutorials.org
git config username
$ git config --global user.name "John Doe" $ git config --global user.email [email protected]
add git user and email
git config --global user.email "[email protected]" git config --global user.name "My Name"
set email git
git config --global user.email "[email protected]"
git config username
$ git config --global user.name "John Doe" $ git config --global user.email [email protected]
get git username and email
git config user.name git config user.email
git config username
$ git config --global user.name "John Doe" $ git config --global user.email [email protected]
* Summary: This "git config username" Shell/Bash Example is compiled from the internet. If you have any questions, please leave a comment. Thank you!