Created
August 13, 2022 07:38
-
-
Save anton-roos/d20a96cc12f8488f1fdb235b462b1f2b to your computer and use it in GitHub Desktop.
git-config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set local git config | |
git config user.name "Your Name Here" | |
git config user.email [email protected] | |
# Set global git config | |
git config --global user.name "Your Name Here" | |
git config --global user.email [email protected] | |
# Check your git settings | |
git config user.name && git config user.email |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment