iso-code 0.1.1

Safe git worktree lifecycle management — prevents data loss bugs in AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Mock git 2.19 — below the 2.20 minimum.
if [ "$1" = "--version" ]; then
    echo "git version 2.19.0"
    exit 0
fi
# Fall through to the real git for everything else (we need it for repo
# setup if ever invoked; the version gate should fail before we get here).
exec /usr/bin/env -u PATH PATH="$MOCK_REAL_PATH" git "$@"