Created
October 7, 2019 10:18
-
-
Save jeffhung/307641b90e1b0561c3bf11a8f4fd91c5 to your computer and use it in GitHub Desktop.
Customize Git Configurations by Folders
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
# See: https://git-scm.com/docs/git-config#_conditional_includes | |
[includeIf "gitdir:~/company/works/"] | |
path = ~/company/works/gitconfig | |
[includeIf "gitdir:~/personal/works/"] | |
path = ~/personal/works/gitconfig |
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
[user] | |
name = Your Name | |
email = [email protected] | |
[github] | |
user = your-username | |
token = your-github-token |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment