Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 279 Bytes

File metadata and controls

10 lines (8 loc) · 279 Bytes
trigger always_on
alwaysApply true

When running read-only git commands such as git log / git show, always pipe through head or tail. For example:

git log --oneline -15 2>&1 | head -20 git show --name-only HEAD 2>&1 | head -30 git show 62ea0c25 --stat 2>&1 | tail -100