Files
gh-ohare93-claude-setup/commands/jj-describe-all.md
2025-11-30 08:44:57 +08:00

8 lines
398 B
Markdown

Use jj (not git) to look at all the commits from main onwards, see their diffs, and give the commit a good description. Use conventional commit convention. A workflow like the following:
- `JJ_CONFIG= jj log --no-pager -s -r "trunk()..@"`
- The format is "REVID EMAIL TIME COMMITID"
- For each ref without a description:
- `jj diff -r REVID`
- `jj desc -r REVID -m "DESCRIPTION OF CHANGES"`