I recently ran into an issue where I could not push changes into a repository I had cloned down as another user from the first user I pushed with in git on my desktop.
Basically it went like this,
- Use git for the first time which asks for github credentials when pushing to a repository. These credentials are then used for all pushes regardless of how the repo was cloned (which ssh key, user, etc)
- Generate SSH keys for both github accounts and add entries to the ssh config to target these identity files. Keys are added to each github account as well.
- Clone repo using corresponding Host entry in ssh config for original account git clone :/.git
- Attempt to push changes to repo and is successful Clone repo using corresponding Host entry in ssh config for second account git clone <2nd Host>:<2nd username>/.git
Attempt to push changes to repo and receive error that the original username does not have permission, even though this was cloned using the second user and more specifically an ssh key.
Clearing the git entries in the windows credential manager did not resolve this issue.
Clearing the global user name and email did not resolve this issue
I was finally able to push my changes using the following:
GIT_SSH_COMMAND="ssh -i <path to private ssh key for second user>" git push
I am posting this both for others who have experienced this issue and also to ask a few questions,
I understand this command is essentially specifying the key for the ssh connection to use when it makes it's push, but why is this key not already targeted if it was cloned using that same identity file?
Are there any alternatives to this or better approaches that are not tedious work like manually changing config values or removing entries from the windows credential manager?
So the goal would be to push changes to multiple github accounts without having to do things like temporarily specify the ssh key to use.
HTTP Paths
https://github.com/schwaggs/testssh
https://github.com/jjschweigert/testrepo
SSH Paths
git@github.com:schwaggs/testssh.git
git@github.com:jjschweigert/testrepo.git
SSH Config File
$ cat ~/.ssh/config
Host jjschweigert
HostName github.com
User git
IdentityFile ~/.ssh/jjschweigert_key
Host schwaggs
HostName github.com
User git
IdentityFile ~/.ssh/jjschweigert_key
Cloning With Original Account
$ git clone jjschweigert:jjschweigert/testrepo.git
Cloning into 'testrepo'...
remote: Enumerating objects: 28, done.
remote: Counting objects: 100% (28/28), done.
remote: Compressing objects: 100% (15/15), done.
remote: Total 28 (delta 0), reused 28 (delta 0), pack-reused 0
Receiving objects: 100% (28/28), done.
Pushing To Original Account (jjschweigert)
$ git push
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Delta compression using up to 12 threads
Compressing objects: 100% (2/2), done.
Writing objects: 100% (2/2), 261 bytes | 43.00 KiB/s, done.
Total 2 (delta 0), reused 0 (delta 0)
To jjschweigert:jjschweigert/testrepo.git
c082e38..31b7830 master -> master
Cloning From Second Account (schwaggs)
$ git clone schwaggs:schwaggs/testssh.git
Cloning into 'testssh'...
remote: Enumerating objects: 21, done.
remote: Counting objects: 100% (21/21), done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 21 (delta 0), reused 18 (delta 0), pack-reused 0
Receiving objects: 100% (21/21), done.
Pushing To Secondary Account
$ git push
ERROR: Permission to schwaggs/testssh.git denied to jjschweigert.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
SSH -T Outputs
$ ssh -T jjschweigert
Hi jjschweigert! You've successfully authenticated, but GitHub does not provide shell access.
$ ssh -T schwaggs
Hi jjschweigert! You've successfully authenticated, but GitHub does not provide shell access.