Claude-skill-registry git-commands

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

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/git-commands" ~/.claude/skills/majiayu000-claude-skill-registry-git-commands && rm -rf "$T"
manifest: skills/data/git-commands/SKILL.md
source content

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.