You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two improvements to reduce noise from background git status operations:
1. **Limit SHOW_BRANCH output to 20 lines**
- Git repos with long histories can have hundreds of commits
- Now truncates to 20 lines with "... (N more commits omitted)" message
- Prevents console from being flooded with commit history
2. **Increase bash truncate output from 50 to 80 lines**
- 50 lines was too restrictive for useful debugging
- 80 lines provides better context while still preventing spam
- Only affects IPC bash calls (background operations)
These changes make git status polling less noisy while still providing
useful information for debugging.
_Generated with `cmux`_
consterrorMessage=`[OUTPUT TRUNCATED - ${overflowReason??"unknown reason"}]\n\nShowing first ${maxTruncateLines} of ${lines.length} lines:\n\n${truncatedOutput}`;
0 commit comments