When I try to clone the source of wine by git, it fails in the middle. And I get ERR_CONNECTION_REFUSED error and cannot connect to source.winehq.org.
example:
$ git clone https://source.winehq.org/git/wine.git wine-git/
Cloning into 'wine-git'...
Fetching objects: 1584 ←always 1584
(ERR_CONNECTION_REFUSED - ip banned)
Translated using DeepL. If something is missing, please ask.
When I git clone the source, it fails no matter how many times I try (IP BAN)
Re: When I git clone the source, it fails no matter how many times I try (IP BAN)
IP BAN and git will stop as it is. It never ends.
- DarkShadow44
- Level 9
- Posts: 1338
- Joined: Tue Nov 22, 2016 5:39 pm
Re: When I git clone the source, it fails no matter how many times I try (IP BAN)
Not ideal, but there's a mirror on github: https://github.com/wine-mirror/wine
Re: When I git clone the source, it fails no matter how many times I try (IP BAN)
Thank you for your help.
I used the following command to avoid an IPBAN.
$ git clone https://source.winehq.org/git/wine.git wine-git/
↓ (Change “https://” to “git://”.)
$ git clone git://source.winehq.org/git/wine.git wine-git/
I used the following command to avoid an IPBAN.
$ git clone https://source.winehq.org/git/wine.git wine-git/
↓ (Change “https://” to “git://”.)
$ git clone git://source.winehq.org/git/wine.git wine-git/