Jujutsu is great for AI coding! #8264
lucifer1004
started this conversation in
Ideas
Replies: 1 comment
-
|
I typically add this part in ## Core Rules
### 1\. Version Control (Jujutsu)
**Strictly follow Jujutsu workflow.** Do not use raw git commands unless necessary.
```bash
jj describe -m "feat: implement JSON reader" # Describe current change
jj new # Create new working copy
# Partial commits - split specific files
jj split README.md -m "docs: update README"
# Squash changes into parent
jj squash --into @-
```
**Commit Style**: Conventional Commits (`feat:`, `fix:`, `refactor:`, `perf:`, `docs:`). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Jujutsu's snapshot functionality works perfectly with AI coding workflows compared to plain Git. This is a huge selling point!
Beta Was this translation helpful? Give feedback.
All reactions