Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:37:33 +08:00
commit c599338ed6
5 changed files with 97 additions and 0 deletions

14
commands/use-jj.md Normal file
View File

@@ -0,0 +1,14 @@
---
description: Inject Jujutsu VCS context and instructions
---
**CRITICAL: This repository uses Jujutsu (jj), not git.** Always use `jj` commands for version control operations.
- Check status: `jj st --no-pager`
- View history: `jj log --no-pager`
- Create commit: `jj commit -m "message"`
- Push: `jj git push`
- Push main: `jj bookmark set main -r @- && jj git push`
- Undo last jj command: `jj undo`
- Help: `jj help`
State the version control system you will be using for this session.