「The unauthenticated git protocol on port 9418 is no longer supported」

참고 문장


아래의 보도를 참고하였다.
https://github.com/flutter/flutter/issues/96468

처리 방법


git을 사용할 때 "The unautihentic ated git protocol on port 9418 is no longer supported"오류가 발생하는 이유는 다음과 같습니다.pubspec.yaml[잘못된 쓰기]
4
ntp:
   git:
     url: git://github.com/knezzz/ntp.git
[맞춤법]
"git:"은 이전의 문법입니다. 지금은 "https:"로 써야 합니다.
ntp:
   git:
     url: https://github.com/knezzz/ntp.git

Giithub도 공식적으로 쓰여 있다.


https://github.blog/2021-09-01-improving-git-protocol-security-github/
이 글은'git:///'쓰기 방식을 사용하는 사용자에게 영향을 미친다고 쓰여 있다.

좋은 웹페이지 즐겨찾기