Created
May 10, 2020 20:17
-
-
Save airtonGit/b0dfbd9d9577e1943fd45940efcb9702 to your computer and use it in GitHub Desktop.
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
git credential-manager uninstall | |
git credential-manager install | |
You can configure an individual repo to use a specific user / email address | |
which overrides the global configuration. From the root of the repo, run | |
git config user.name "Your Name Here" | |
git config user.email [email protected] | |
whereas the default user / email is configured in your ~/.gitconfig | |
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