更新: これはベータ版なので、しばらくお待ちください!
ssh を使用して git push できませんsource.developers.google.com
次のエラー メッセージが表示されますgit push --all google
。
The authenticity of host '[source.developers.google.com]:<some ip address' can't be established.
ECDSA key fingerprint is SHA256:<key>
更新: KNOWN_HOSTS に追加:
ssh-keyscan -t rsa source.developers.google.com > known_hosts
ssh 構成vi ~/.ssh/config
:
Host *
AddKeysToAgent yes
UseKeychain yes
IdentityFile ~/.ssh/id_rsa
git リモート -v:
google ssh://<email>.com@source.developers.google.com:2022/p/<repo url> (fetch)
google ssh://<email>.com@source.developers.google.com:2022/p/<repo url> (push)