1ac952c094
Replace the broken `git rebase HEAD^` with a proper shallow fetch: - `git fetch --depth=1` limits local history to one commit, regardless of server history - `git reset --hard FETCH_HEAD` syncs the working tree to the fetched tip - `git clean -fd` removes untracked non-ignored files left by old versions - `git gc --prune=now` immediately purges unreachable history objects Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>