Git command conventions for pikru. Use when running any git commands to avoid blocking on interactive pager.
Scanned 2/12/2026
Install via CLI
openskills install majiayu000/claude-skill-registry---
name: git-commands
description: Git command conventions for pikru. 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:
```bash
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.
No comments yet. Be the first to comment!