gpt4 book ai didi

Git 为每次推送继续构建我的 'known_hosts' 文件

转载 作者:行者123 更新时间:2023-12-04 02:08:07 25 4
gpt4 key购买 nike

我创建了一个本地 git 存储库,我想将其推送到 Github 和 Amazon 的 CodeCommit。

我设置了两个 Remote 并相应地命名了它们:

git remote add github git@github.com:mygit/myrepo.git

git remote add codecommit ssh://git-codecommit.us-west-2.amazonaws.com/v1/repos/myrepo

Github 存储库运行良好。 CodeCommit 存储库有效,但每次我运行推送时:

git push -u codecommit master

每次推送它都会添加到我的“~/.ssh/known_hosts”文件中。如果我继续,我的“已知主机”文件中将有一百万个条目。

我能看到的唯一区别是 CodeCommit 远程链接上的格式,它与 Github 格式略有不同,如上所示。当您在 CodeCommit 上创建存储库时,它会提供一个远程链接:

git clone ssh://git-codecommit.us-west-2.amazonaws.com/v1/repos/myrepo

由于我将本地 git 存储库推送到 CodeCommit,我删除了“git clone”部分并将其替换为:

git remote add codecommit ssh://git-codecommit.us-west-2.amazonaws.com/v1/repos/myrepo

CodeCommit 还要求您创建一个“~/.ssh/config”文件:

Host git-codecommit.*.amazonaws.com
User Your-IAM-SSH-Key-ID-Here
IdentityFile ~/.ssh/Your-Private-Key-File-Name-Here

我按照说明创建了这个文件。

有人在使用两个远程服务器(Github 和 CodeCommit)时遇到过这个问题吗?

最佳答案

可能是 CodeCommit 在负载均衡器后面,每个节点都有自己的 SSH 主机 key 。当您访问不同的节点时,它们会向您展示它们自己的主机 key ,您的 ssh 客户端会将其缓存在 known_hosts 中。

您可以忽略它,但如果您不想让 key 累积,您可以选择忽略此远程缓存。

~/.ssh/config 中,只需将几个参数添加到您已经添加的条目即可。

Host git-codecommit.*.amazonaws.com
User Your-IAM-SSH-Key-ID-Here
IdentityFile ~/.ssh/Your-Private-Key-File-Name-Here
UserKnownHostsFile /dev/null
CheckHostIP no

关于Git 为每次推送继续构建我的 'known_hosts' 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41523839/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com