using-git

Git command conventions. Use when running any git commands to avoid blocking on interactive pager.

$ Instalar

git clone https://github.com/claylo/test-crate /tmp/test-crate && cp -r /tmp/test-crate/.claude/skills/using-git ~/.claude/skills/test-crate

// tip: Run this command in your terminal to install the skill


name: using-git description: Git command conventions. Use when running any git commands to avoid blocking on interactive pager.

Git Commands

Always use --no-pager BEFORE the git command to avoid blocking on interactive pager:

git --no-pager log -10
git --no-pager diff
git --no-pager show

The --no-pager flag must come before the subcommand (log, diff, show, etc.), not after.