Skip to content

Instantly share code, notes, and snippets.

@asears
Created January 7, 2022 10:36
Show Gist options
  • Select an option

  • Save asears/5733b29428c8a796aab9baeb6b1b7ebe to your computer and use it in GitHub Desktop.

Select an option

Save asears/5733b29428c8a796aab9baeb6b1b7ebe to your computer and use it in GitHub Desktop.
Git setup
# Global user
git config --global user.name "Firstname lastname"
git config --global user.email [email protected]
# Local user
git config user.name=<user name>
git config user.email=<email>

git config credential.helper store

# Commit editor
git config --global core.editor "code --wait"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment