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
Copy file name to clipboardExpand all lines: .claude/commands/jj.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,22 +49,24 @@ For each logical commit, provide:
49
49
- path/to/file1
50
50
- path/to/file2
51
51
52
-
**Message:**
53
-
```
54
-
<type>(<scope>): <description>
55
-
56
-
<bodyexplainingthewhatandwhy>
57
-
```
58
-
59
52
**Commands:**
60
53
```bash
61
54
jj split -r @ ...
62
55
# ^ What this does: <explain what the command does and why we're using it here>
63
56
64
-
jj describe -m "..."
65
-
# ^ What this does: <explain what the command does>
57
+
jj describe
58
+
# ^ Opens $EDITOR to write commit message. Use the message below:
66
59
```
60
+
61
+
**Commit message:**
67
62
```
63
+
<type>(<scope>): <description>
64
+
65
+
<body explaining the what and why>
66
+
```
67
+
```
68
+
69
+
**IMPORTANT**: Never use `jj describe -m "..."`. Always use `jj describe` (no -m flag) to open the editor, then provide the commit message in a separate code block for easy copy-paste.
0 commit comments