We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ac354a commit 7e91625Copy full SHA for 7e91625
1 file changed
AGENTS.md
@@ -266,6 +266,18 @@ what:
266
- Register myst directives automatically
267
- Add tests for Markdown doctest parsing
268
```
269
+For multi-line commits, use heredoc to preserve formatting:
270
+```bash
271
+git commit -m "$(cat <<'EOF'
272
+feat(Component[method]) add feature description
273
+
274
+why: Explanation of the change.
275
+what:
276
+- First change
277
+- Second change
278
+EOF
279
+)"
280
+```
281
282
## Debugging Tips
283
0 commit comments