2

I have a Gitlab account for my job and I use my Github account for my personal purposes.

Can I connect the two accounts in Visual Studio Code and choose where to save the codes?

Cline
  • 49
  • 1
  • 9

1 Answers1

0

Once you have added a second remote to your Git repo (git remote add ...), you can, from VSCode, use Push to in order to chose where you want to push a repository.

But if you issue is about pushing to GitLab for one repository, and GitHub for another, you don't have to do anything: each one will use (for HTTPS URL) their respective credentials. VSCode will simply push to origin, as it does by default.

For SSH URL, you can use separate keys in your ~/.ssh/config file, to differentiate the remote authentication.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250