gitdataai/libs/git/http
ZhenYi cef4ff1289 fix(git): harden HTTP and SSH git transports for robustness
HTTP:
- Return Err(...) instead of Ok(HttpResponse::...) for error cases so
  actix returns correct HTTP status codes instead of 200
- Add 30s timeout on info_refs and handle_git_rpc git subprocess calls
- Add 1MB pre-PACK limit to prevent memory exhaustion on receive-pack
- Enforce branch protection rules (forbid push/force-push/deletion/tag)
- Simplify graceful shutdown (remove manual signal handling)

SSH:
- Fix build_git_command: use block match arms so chained .arg() calls
  are on the Command, not the match expression's () result
- Add MAX_RETRIES=5 to forward() data-pump loop to prevent infinite
  spin on persistent network failures
- Fall back to raw path if canonicalize() fails instead of panicking
- Add platform-specific git config paths (/dev/null on unix, NUL on win)
- Start rate limiter cleanup background task so HashMap doesn't grow
  unbounded over time
- Derive Clone on RateLimiter so SshRateLimiter::start_cleanup works
2026-04-16 20:11:18 +08:00
..
auth.rs init 2026-04-15 09:08:09 +08:00
handler.rs fix(git): harden HTTP and SSH git transports for robustness 2026-04-16 20:11:18 +08:00
lfs_routes.rs init 2026-04-15 09:08:09 +08:00
lfs.rs init 2026-04-15 09:08:09 +08:00
mod.rs fix(git): harden HTTP and SSH git transports for robustness 2026-04-16 20:11:18 +08:00
rate_limit.rs init 2026-04-15 09:08:09 +08:00
routes.rs fix(git): harden HTTP and SSH git transports for robustness 2026-04-16 20:11:18 +08:00
utils.rs init 2026-04-15 09:08:09 +08:00