We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 606386a commit afb00bfCopy full SHA for afb00bf
1 file changed
AGENTS.md
@@ -280,6 +280,18 @@ what:
280
- Update send_keys to pass -l flag when literal=True
281
- Add tests for literal key sending
282
```
283
+For multi-line commits, use heredoc to preserve formatting:
284
+```bash
285
+git commit -m "$(cat <<'EOF'
286
+feat(Component[method]) add feature description
287
+
288
+why: Explanation of the change.
289
+what:
290
+- First change
291
+- Second change
292
+EOF
293
+)"
294
+```
295
296
## Debugging Tips
297
0 commit comments