Using Multiple Author Identities with Git
thecodedself.com
Using Multiple Author Identities with Git
1–7 of 7 posts
Re: Using Multiple Author Identities with Git
#2It makes sense not to set the global config at all if you're paranoid. This ensures you have to setup the user.name and user.email locally.
Re: Using Multiple Author Identities with Git
#3Re: Using Multiple Author Identities with Git
#4Re: Using Multiple Author Identities with Git
#5I keep intending to make a wrapper around "git init" and "git clone" warning me of what my identity is, so I have the opportunity to change it.
Karn looks interesting (thanks pseud!) but unfortunately won't work for me because I often use /tmp and not any consistent path naming that would identify which hat I should be using.
Re: Using Multiple Author Identities with Git
#6I only recently discovered the local "current repository" configuration option, but I still need to verify which identity I'm using before a commit. It makes sense not to set the global config at all if you're paranoid. This ensures you have to setup the user.name and user.email locally.
Re: Using Multiple Author Identities with Git
#7 ~/code-repositories/
+---$company/ (my work related repositories)
+---private/ (my personal non-public repos)
+---public/ (my clones of public FLOSS repos)
So I'd simply like to drop a `.gitconfig` with the default user for all repos below this location into each of those 3 directories, but instead I have to make sure for every freshly clone/initiated repo to configure the author etc.