Skip to content

Instantly share code, notes, and snippets.

@anton-roos
Created August 13, 2022 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anton-roos/d20a96cc12f8488f1fdb235b462b1f2b to your computer and use it in GitHub Desktop.
Save anton-roos/d20a96cc12f8488f1fdb235b462b1f2b to your computer and use it in GitHub Desktop.
git-config
# Set local git config
git config user.name "Your Name Here"
git config user.email your@email.example
# Set global git config
git config --global user.name "Your Name Here"
git config --global user.email your@email.example
# 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