Created
November 17, 2020 19:46
-
-
Save mballoni/c987f2fe3c6cd8bf4dcf995e8a60ea4b to your computer and use it in GitHub Desktop.
git config email and username by directory
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
cd ~ | |
cat .gitconfig | |
[user] | |
email = [email protected] | |
name = personal name | |
[includeIf "gitdir:~/repositories/someclient/"] | |
path = ~/repositories/someclient/.gitconfig | |
cd ~/repositories/someclient | |
cat .gitconfig | |
[user] | |
email = [email protected] | |
name = Some Client User Name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment