Created
July 14, 2022 21:58
-
-
Save stephenh/407c2d0ca6b5d5f7a62c6bba6e6e3443 to your computer and use it in GitHub Desktop.
Multiple git configs
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
# In your home directory ~.gitconfig | |
[user] | |
name = <your name> | |
email = <personal-email>@gmail.com | |
# If all Homebound-related code is in your ~/homebound directory | |
[includeIf "gitdir:~/homebound/"] | |
path = .gitconfig-homebound |
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 = <corporate-email>@homebound.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment