We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1fd8ef commit a0d8e27Copy full SHA for a0d8e27
1 file changed
AGENTS.md
@@ -244,6 +244,18 @@ what:
244
- Update GitURL.to_url() to include port if specified
245
- Add tests for the new functionality
246
```
247
+For multi-line commits, use heredoc to preserve formatting:
248
+```bash
249
+git commit -m "$(cat <<'EOF'
250
+feat(Component[method]) add feature description
251
+
252
+why: Explanation of the change.
253
+what:
254
+- First change
255
+- Second change
256
+EOF
257
+)"
258
+```
259
260
## Debugging Tips
261
0 commit comments