我最近遇到了一个问题,我无法将更改推送到我作为另一个用户从我在桌面上的 git 中推送的第一个用户克隆下来的存储库中。
基本上是这样的,
- 第一次使用 git,它在推送到存储库时会要求提供 github 凭据。然后,这些凭据将用于所有推送,无论 repo 是如何克隆的(哪个 ssh 密钥、用户等)
- 为两个 github 帐户生成 SSH 密钥,并将条目添加到 ssh 配置以定位这些身份文件。密钥也会添加到每个 github 帐户中。
- 使用 ssh 配置中相应的主机条目克隆 repo,用于原始帐户 git clone :/.git
- 尝试将更改推送到 repo 并成功克隆 repo 使用 ssh 配置中的相应主机条目为第二个帐户 git clone <2nd Host>:<2nd username>/.git
尝试将更改推送到 repo 并收到原始用户名没有权限的错误,即使这是使用第二个用户克隆的,更具体地说是 ssh 密钥。
清除 Windows 凭据管理器中的 git 条目并不能解决此问题。
清除全局用户名和电子邮件未解决此问题
我终于能够使用以下内容推送我的更改:
GIT_SSH_COMMAND="ssh -i <path to private ssh key for second user>" git push
我为遇到此问题的其他人发布此信息并提出一些问题,
我了解此命令本质上是指定 ssh 连接在推送时使用的密钥,但是如果使用相同的身份文件克隆该密钥,为什么它还没有成为目标?
是否有任何替代方法或更好的方法而不是繁琐的工作,例如手动更改配置值或从 Windows 凭据管理器中删除条目?
因此,目标是将更改推送到多个 github 帐户,而无需执行临时指定要使用的 ssh 密钥之类的操作。
HTTP 路径
https://github.com/schwaggs/testssh
https://github.com/jjschweigert/testrepo
SSH 路径
git@github.com:schwaggs/testssh.git
git@github.com:jjschweigert/testrepo.git
SSH 配置文件
$ 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
使用原始帐户克隆
$ 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.
推送到原始帐户 (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
从第二个帐户克隆 (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.
推送到辅助帐户
$ 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 输出
$ 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.