Using multiple Github accounts with SSH keys
I have recently been given access to a Github repository that I'll call work
for this question, access to this repository has been given to my via SSH keys.
I use SSH keys for my account (that I'll call me
) which hasn't given me a problem and continues to act normally for any repository that is under this account.
I have my config
file set up like this
Host me.github.com
HostName github.com
User git
IdentityFile ~/.ssh/me
Host work.github.com
HostName github.com
User git
IdentityFile ~/.ssh/work
When I try to use ssh-add -l
both keys show up, and both accounts have the correct public key added to them.
Sending the command ssh -T git@github.com
returns Hi me! You've successfully authenticated, but GitHub does not provide shell access.
, although if I send the command ssh -T git@work.github.com
it responds in the correct way.
Both origins for fetch and push are set to the ssh link as verified by git remote -v
I have tried following this gist, this Medium article, and this StackOverflow question, along with a few others with no success.
I should probably also include that I'm running on Windows 10 LTSB build 14393, Powershell 5.1, git version 2.19.1.windows.1, and posh-git 0.7.3.1 installed through Chocolatey.
git powershell github ssh
add a comment |
I have recently been given access to a Github repository that I'll call work
for this question, access to this repository has been given to my via SSH keys.
I use SSH keys for my account (that I'll call me
) which hasn't given me a problem and continues to act normally for any repository that is under this account.
I have my config
file set up like this
Host me.github.com
HostName github.com
User git
IdentityFile ~/.ssh/me
Host work.github.com
HostName github.com
User git
IdentityFile ~/.ssh/work
When I try to use ssh-add -l
both keys show up, and both accounts have the correct public key added to them.
Sending the command ssh -T git@github.com
returns Hi me! You've successfully authenticated, but GitHub does not provide shell access.
, although if I send the command ssh -T git@work.github.com
it responds in the correct way.
Both origins for fetch and push are set to the ssh link as verified by git remote -v
I have tried following this gist, this Medium article, and this StackOverflow question, along with a few others with no success.
I should probably also include that I'm running on Windows 10 LTSB build 14393, Powershell 5.1, git version 2.19.1.windows.1, and posh-git 0.7.3.1 installed through Chocolatey.
git powershell github ssh
add a comment |
I have recently been given access to a Github repository that I'll call work
for this question, access to this repository has been given to my via SSH keys.
I use SSH keys for my account (that I'll call me
) which hasn't given me a problem and continues to act normally for any repository that is under this account.
I have my config
file set up like this
Host me.github.com
HostName github.com
User git
IdentityFile ~/.ssh/me
Host work.github.com
HostName github.com
User git
IdentityFile ~/.ssh/work
When I try to use ssh-add -l
both keys show up, and both accounts have the correct public key added to them.
Sending the command ssh -T git@github.com
returns Hi me! You've successfully authenticated, but GitHub does not provide shell access.
, although if I send the command ssh -T git@work.github.com
it responds in the correct way.
Both origins for fetch and push are set to the ssh link as verified by git remote -v
I have tried following this gist, this Medium article, and this StackOverflow question, along with a few others with no success.
I should probably also include that I'm running on Windows 10 LTSB build 14393, Powershell 5.1, git version 2.19.1.windows.1, and posh-git 0.7.3.1 installed through Chocolatey.
git powershell github ssh
I have recently been given access to a Github repository that I'll call work
for this question, access to this repository has been given to my via SSH keys.
I use SSH keys for my account (that I'll call me
) which hasn't given me a problem and continues to act normally for any repository that is under this account.
I have my config
file set up like this
Host me.github.com
HostName github.com
User git
IdentityFile ~/.ssh/me
Host work.github.com
HostName github.com
User git
IdentityFile ~/.ssh/work
When I try to use ssh-add -l
both keys show up, and both accounts have the correct public key added to them.
Sending the command ssh -T git@github.com
returns Hi me! You've successfully authenticated, but GitHub does not provide shell access.
, although if I send the command ssh -T git@work.github.com
it responds in the correct way.
Both origins for fetch and push are set to the ssh link as verified by git remote -v
I have tried following this gist, this Medium article, and this StackOverflow question, along with a few others with no success.
I should probably also include that I'm running on Windows 10 LTSB build 14393, Powershell 5.1, git version 2.19.1.windows.1, and posh-git 0.7.3.1 installed through Chocolatey.
git powershell github ssh
git powershell github ssh
asked Nov 19 '18 at 4:11
MattMatt
397
397
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
First, check your two SSH keys with:
ssh -Tv me.github.com
ssh -Tv work.github.com
Second, you can add for testing in a repo both URLs:
git remote set-url origin me.github.com:<auser>/<arepo>
git remote origin originWork work.github.com:<auser>/<arepo>
(no need for git@
in the URL)
From there, you can use one or the other origin to pull/push.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53368197%2fusing-multiple-github-accounts-with-ssh-keys%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
First, check your two SSH keys with:
ssh -Tv me.github.com
ssh -Tv work.github.com
Second, you can add for testing in a repo both URLs:
git remote set-url origin me.github.com:<auser>/<arepo>
git remote origin originWork work.github.com:<auser>/<arepo>
(no need for git@
in the URL)
From there, you can use one or the other origin to pull/push.
add a comment |
First, check your two SSH keys with:
ssh -Tv me.github.com
ssh -Tv work.github.com
Second, you can add for testing in a repo both URLs:
git remote set-url origin me.github.com:<auser>/<arepo>
git remote origin originWork work.github.com:<auser>/<arepo>
(no need for git@
in the URL)
From there, you can use one or the other origin to pull/push.
add a comment |
First, check your two SSH keys with:
ssh -Tv me.github.com
ssh -Tv work.github.com
Second, you can add for testing in a repo both URLs:
git remote set-url origin me.github.com:<auser>/<arepo>
git remote origin originWork work.github.com:<auser>/<arepo>
(no need for git@
in the URL)
From there, you can use one or the other origin to pull/push.
First, check your two SSH keys with:
ssh -Tv me.github.com
ssh -Tv work.github.com
Second, you can add for testing in a repo both URLs:
git remote set-url origin me.github.com:<auser>/<arepo>
git remote origin originWork work.github.com:<auser>/<arepo>
(no need for git@
in the URL)
From there, you can use one or the other origin to pull/push.
answered Nov 19 '18 at 5:37
VonCVonC
837k29426453184
837k29426453184
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53368197%2fusing-multiple-github-accounts-with-ssh-keys%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown