I attempted to clone the libgpg-error.git repository from git.gnupg.org using the HTTPS protocol, but the operation failed. Below is the error message I received:
➜ community git clone https://git.gnupg.org/libgpg-error.git Cloning into 'libgpg-error'... fatal: Repository 'https://git.gnupg.org/libgpg-error.git/' not found
However, cloning the repository works as expected when using the Git protocol:
➜ community git clone git://git.gnupg.org/libgpg-error.git Cloning into 'libgpg-error'... remote: Enumerating objects: 7396, done. remote: Counting objects: 100% (7396/7396), done. remote: Compressing objects: 100% (6739/6739), done. remote: Total 7396 (delta 5606), reused 856 (delta 620), pack-reused 0 Receiving objects: 100% (7396/7396), 2.61 MiB | 1.13 MiB/s, done. Resolving deltas: 100% (5606/5606), done.
Please look into this issue. Thank you. By the way, I found these urls HERE.