返回 Skill 列表
extension
分类: 开发与工程无需 API Key

git-commands

pikru的Git命令约定。在运行任何git命令时使用,以避免被交互式分页程序阻塞。

person作者: 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.