Babai
Babai

Reputation: 97

Working with multiple github account on same machine

I have 2 accounts , one is for personal use and another one is for professional usage. Now to work with multiple github accounts I have to perform these steps ,

  1. Generating the SSH keys
  2. Adding the new SSH key to the corresponding GitHub account
  3. Registering the new SSH Keys with the ssh-agent
  4. Creating the SSH config File
  5. One active SSH key in the ssh-agent at a time

Now the account that I am using for professional usage is shared with 5 more people , i.e we are using same credential.

Now my question is , If I perform those above tasks(1-5), then will they face any error while pushing or fetching repository? If yes then how to bypass the issue?

Thanks and regards

Upvotes: 0

Views: 136

Answers (1)

LeGEC
LeGEC

Reputation: 52216

Perhaps Github will have an issue with your account if they estimate it is a breach of their terms of service (I warmly invite you to read the terms for your subscription),

but I don't see any technical limitations coming from git or ssh alone.


I must say I don't understand what you mean with :

  1. One active SSH key in the ssh-agent at a time

Upvotes: 1

Related Questions