Add container Git helper integration

Wire Git inside containers to the host proxy so HTTPS remotes can reuse host credentials automatically.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
严浩
2026-03-08 17:15:48 +08:00
parent 880b76f795
commit 69d029542b
2 changed files with 65 additions and 0 deletions

19
git-credential-hostproxy Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
set -eu
script_dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
if [ -n "${GIT_CRED_PROXY_RUNTIME:-}" ]; then
exec "$GIT_CRED_PROXY_RUNTIME" "$script_dir/helper.mjs" "$@"
fi
if command -v bun >/dev/null 2>&1; then
exec bun "$script_dir/helper.mjs" "$@"
fi
if command -v node >/dev/null 2>&1; then
exec node "$script_dir/helper.mjs" "$@"
fi
printf 'Either bun or node is required to run git-credential-hostproxy\n' >&2
exit 1