gitgithubgitolitegit-config

How to tell git to use the correct identity (name and email) for a given project?


I use my personal laptop for both work and personal projects and I would like to use my work email address for my commits at work (gitolite) and my personal email address for the rest (github).

I read about the following solutions which are all either global or temporary:

One solution is to run manually a shell function that sets my environment to work or personal, but I am pretty sure that I will often forget to switch to the correct identity resulting in committing under the wrong identity.

Is there a way of binding a certain repository, project name, etc. to an identity (name, email)? What do people do?


Solution

  • git config user.email "bob@example.com"

    Doing that one inside a repo will set the configuration on THAT repo, and not globally.

    Seems like that's pretty much what you're after, unless I'm misreading you.