I am facing way too slow `git pull` from bitbucket; first I thought it's a temporary issue due to the outage on Oct 21st, 2025 but even today, more than 24 hours after bitbucket has posted [status](https://bitbucket.status.atlassian.com/) to be all fine, I'm still facing slow pulls. Anyone can spot any issue as such, here's my logs
```
```
as you can notice it took about 7 minutes to find out the repository is >Already up to date.
I was able to resolve the issue based on suspicion that somehow, my ISP had stopped supporting IPv6, all of a sudden on the same day when AWS experienced outage on October 20th, 2025.
Solution
force IPv4 for ssh (this solution is for system-wide ssh)
file: /etc/ssh/ssh_config
before:
`# AddressFamily`
after:
`AddressFamily inet`
I wouldn't have imagined that an issue from December 2018 (https://community.atlassian.com/forums/Bitbucket-questions/Slow-SSH-clone-pull-push/qaq-p/953843) would have similar culprit because everything was working fine, then at the coinciding timeline with AWS outage it would stopped working, anyways maybe AWS ripples somehow touch my ISP's IPv6 capabilities.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.