I'd like to work with multiple git-based open source projects from the same machine. For each project, I'd like to associate a differnet user.name
and user.email
as appropriate. For instance, I might want to work on some project called fizz
that is hosted on GitHub, and also work on another project called buzz
that has its own privately-hosted, centralized git server/repo.
For the fizz
project, I'd like to use [email protected]
as my email, so that when I push changes to the master branch, other collaborators see that as my username/email.
But for the buzz
project, I'd like to user [email protected]
, so that when I push changes to its master, collaborators on the buzz
project so that as my email.
Unless I'm mistaken, EGit seems to only allow me to configure 1 user.name
and user.email
. How can I get around this? Thanks in advance!
Git configuration is stored in the following files, and when looking up configuration, it is tried in the following order (see git config):
.git/config
in the current repository.gitconfig
in the user's home directorygitconfig
in the system configuration directory (e.g. /etc
on Linux)So to configure user.email
differently for a specific repository, do the following:
user.email
as the key and the desired valueThe repository configuration can also be changed from the preferences > Team > Git > Configuration > Repository Settings.
Note that in Git, user.name
should be a real full name such as Jane Doe
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With