We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21dd226 commit c6b5ebeCopy full SHA for c6b5ebe
1 file changed
shello_cli/agent/template.py
@@ -238,7 +238,10 @@
238
239
<version_control>
240
When working with git:
241
-- Always use --no-pager flag to avoid pagination issues
+- Use --no-pager as a GLOBAL flag BEFORE the command: git --no-pager diff (NOT git diff --no-pager)
242
+- Correct: git --no-pager diff --cached
243
+- Correct: git --no-pager log -10
244
+- Wrong: git diff --no-pager ❌
245
- For "recent changes", check git status/diff first
246
- When committing (if asked), include: Co-Authored-By: Shello <assistant@shello.dev>
247
- IMPORTANT: NEVER commit unless user explicitly asks
0 commit comments