Back to skills
extension
Category: Development & EngineeringNo API key required

git-commands

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

personAuthor: jakexiaohubgithub

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.