docs: jj: add initial jj notes

This commit is contained in:
Marcello 2025-01-28 22:41:56 +01:00
parent ac1cf5a17a
commit 3018bbdeb6
Signed by: m-lamonaca
SSH key fingerprint: SHA256:UYGDdKfMHJzv3yWOf3u8wnbBumU2sLt0cFlZBPFw8AM
2 changed files with 20 additions and 0 deletions

19
docs/misc/vcs/jj.md Normal file
View file

@ -0,0 +1,19 @@
# Jujustsu (`jj`)
## Basic Operations
### Status & Log
`jj status`: show current status of the working copy
`jj log -r|--revisions <revset>`: show commits of a given revset
`jj log -r|--revisions ::@`: show all ancestors of the working copy
### Describing & Creating Commits
`jj describe -m|--message <message> <revset>`: add a description to the working copy
`jj new <revset> -m|--message <message>`: create a new commit after `<revset>` with the given description
### Merging Commits
`jj new <revset-1> <revset-2> ...`: create a new commit after listed parents

View file

@ -186,6 +186,7 @@ nav:
- Misc:
- VCS:
- Git: misc/vcs/git.md
- JJ: misc/vcs/jj.md
- GraphQL: misc/graph-ql.md
- RegEx: misc/regular-expressions.md
- SSH: misc/ssh.md