660 B
660 B
Global Pi Instructions
Version Control
Prefer Jujutsu (jj) over Git for source-control operations.
- Use
jj statusinstead ofgit status. - Use
jj diffinstead ofgit diff. - Use
jj loginstead ofgit log. - Use
jj describefor change descriptions. - Use
jj new,jj split, andjj squashfor change management. - Avoid
git add,git commit, and direct index/staging workflows unless explicitly requested. - Git commands are acceptable only for operations that
jjcannot perform or when the user asks for Git specifically. - When reporting changes, mention the active
jjchange/workspace state rather than Git staging state.