This service is available only in Japanese-language.

git://が使用できなくなった件について

gitでgit clone git://が使用できなくなった件について。
Yoctoでbitbakeする際、IMAGE_INSTALL_appendで指定したパッケージの一部がこのエラーに引っ掛かるのですが、
何か解決策はありませんでしょうか?

git://...ではなく、https://github.com/...からcloneしてくるように指定できればいいのですが...

---------------------------------
■Yoctoでfetchエラー発生
Fetcher failure for URL: 'git://github.com/*** Unable to fetch URL from any source.

■試しに手動でgit clone --> エラー
$ git clone git://github.com/***
Cloning into '***'...
fatal: remote error:
The unauthenticated git protocol on port 9418 is no longer supported.
Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.

■エラーの件の情報 --> git://... が使用できなくなった模様
https://github.blog/2021-09-01-improving-git-protocol-security-github/#n...
https://naari.hatenablog.com/entry/2022/01/11/140137

■挙動
・recipe中のSRC_URIで指定されている git:// は特に問題なくfetchできていた
・local.conf で IMAGE_INSTALL_append したアプリの1つで上記エラー発生

https://yoctobbq.lineo.co.jp/?q=node/373
で案内しておりますが、githubへのアクセスの際に、proto=https を追加することで、アクセス可能となります。