diff options
| -rw-r--r-- | bitbake/lib/bb/fetch2/git.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py index 000aee190d..f6f6b63a74 100644 --- a/bitbake/lib/bb/fetch2/git.py +++ b/bitbake/lib/bb/fetch2/git.py | |||
| @@ -141,6 +141,10 @@ class Git(FetchMethod): | |||
| 141 | ud.proto = 'file' | 141 | ud.proto = 'file' |
| 142 | else: | 142 | else: |
| 143 | ud.proto = "git" | 143 | ud.proto = "git" |
| 144 | if ud.host == "github.com" and ud.proto == "git": | ||
| 145 | # github stopped supporting git protocol | ||
| 146 | # https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git | ||
| 147 | ud.proto = "https" | ||
| 144 | 148 | ||
| 145 | if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'): | 149 | if not ud.proto in ('git', 'file', 'ssh', 'http', 'https', 'rsync'): |
| 146 | raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) | 150 | raise bb.fetch2.ParameterError("Invalid protocol type", ud.url) |
