When I git clone the source, it fails no matter how many times I try (IP BAN)

Post issues, bugs, and feature requests about the various WineHQ websites to this forum.
Locked
axis6404
Level 2
Level 2
Posts: 14
Joined: Sun Apr 23, 2023 5:13 am

When I git clone the source, it fails no matter how many times I try (IP BAN)

Post by axis6404 »

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.
axis6404
Level 2
Level 2
Posts: 14
Joined: Sun Apr 23, 2023 5:13 am

Re: When I git clone the source, it fails no matter how many times I try (IP BAN)

Post by axis6404 »

IP BAN and git will stop as it is. It never ends.
User avatar
DarkShadow44
Level 9
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)

Post by DarkShadow44 »

Not ideal, but there's a mirror on github: https://github.com/wine-mirror/wine
axis6404
Level 2
Level 2
Posts: 14
Joined: Sun Apr 23, 2023 5:13 am

Re: When I git clone the source, it fails no matter how many times I try (IP BAN)

Post by axis6404 »

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/
Locked