# using-git > Git command conventions. Use when running any git commands to avoid blocking on interactive pager. - Author: Clay Loveless - Repository: claylo/bito-lint - Version: 20260208202202 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-09 - Source: https://github.com/claylo/bito-lint - Web: https://mule.run/skillshub/@@claylo/bito-lint~using-git:20260208202202 --- --- 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: ```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.