Created
April 10, 2023 19:27
-
-
Save StefanoLusardi/084ace421c6e20c20caf264e4380c807 to your computer and use it in GitHub Desktop.
git config username / mail
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
| # For global git settings: | |
| git config --global user.name "YOUR_NAME" | |
| git config --global user.email "YOUR_EMAIL" | |
| # For a single repo only: | |
| git config --local user.name "YOUR_NAME" | |
| git config --local user.email "YOUR_EMAIL" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment