We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66872be commit 51ec3c7Copy full SHA for 51ec3c7
1 file changed
AGENTS.md
@@ -169,6 +169,18 @@ def test_vcspull_sync(git_repo):
169
# git_repo is already a GitSync instance with a clean repository
170
# Use it directly in your tests
171
```
172
+For multi-line commits, use heredoc to preserve formatting:
173
+```bash
174
+git commit -m "$(cat <<'EOF'
175
+feat(Component[method]) add feature description
176
+
177
+why: Explanation of the change.
178
+what:
179
+- First change
180
+- Second change
181
+EOF
182
+)"
183
+```
184
185
#### Test Structure
186
0 commit comments