Report this

What is the reason for this report?

How to configure multiple accounts on git?

Posted on January 9, 2021
Yash Tibrewal

By Yash Tibrewal

Developer

As I was following the tutorial https://www.digitalocean.com/community/tutorials/how-to-install-git-on-ubuntu-20-04 I wanted to know, how can we configure multiple usernames? Reason: Say one project is personal and requires myemail@gmail.com and other one is professional and requires myemail@company.com. How can I achieve the same?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi there @yashtibrewal,

In order to set up your Git username for a single repository, you need to skip the --global flag and run the command inside the specific repository.

Let’s have the following example if you have 2 repositories: project1 and project2.

  • First go to the project1 directory:
cd project1
  • Then set a Git username:
git config user.name "Your Name"
  • Then you could also check if it has been setup correctly:
git config user.name
  • To set your email run:
git config user.email "your_mail@example.com"

Once you are ready with project1 use the cd command to access the project2 repository and run the config command again.

Hope that this helps. Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.