Last active
March 23, 2017 13:38
-
-
Save artgris/63c3310f73b9397b385bd18f5141d4d5 to your computer and use it in GitHub Desktop.
Overrides the global git configuration
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
- An individual repo : | |
git config user.name "Your Name Here" | |
git config user.email [email protected] | |
- Global configuration : | |
git config --global user.name "Your Name Here" | |
git config --global user.email [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment