Created
October 7, 2019 10:18
Customize Git Configurations by Folders
This file contains 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 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 = your_name@your-name.org | |
[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