git · git:20260308.ae0a2f8 · 2026-03-08 · sha256 62d87293f7b19843
git git:20260308.ae0a2f8A
Immutable. This exact content is served forever at /api/v1/blob/62d87293f7b19843.
--- name: git description: Run git version control commands. Use when the user asks to check repository status, view commit history, show diffs, stage and commit changes, or manage branches. compatibility: Requires git --- # Git Operations ## Check status ```bash git status ``` ## View recent history ```bash git log --oneline -10 ``` ## Show changes ```bash git diff ``` ## Stage and commit ```bash git add FILE && git commit -m "MESSAGE" ``` ## Branch operations ```bash git branch -a git checkout -b BRANCH git merge BRANCH ```