Skip to content

Network Errors

Common networking issues and solutions. Symptoms: timeouts, connection refused, DNS failures.

Quick checks

Bash
1
2
3
4
5
6
7
8
# GitHub API reachable?
curl -I https://api.github.com

# Corporate proxy set?
printenv | grep -i -E 'http_proxy|https_proxy'

# PAC in effect? (Windows)
# use --auto-proxy in CLI if needed

Try with auto-proxy

Bash
gitbridge sync --config config.yaml --auto-proxy

Validate outside GitBridge

Bash
curl -I https://raw.githubusercontent.com/github/gitignore/main/Python.gitignore

If curl fails, fix network/proxy first.