diff --git a/docs/misc/vcs/jj.md b/docs/misc/vcs/jj.md new file mode 100644 index 0000000..7f4a227 --- /dev/null +++ b/docs/misc/vcs/jj.md @@ -0,0 +1,19 @@ +# Jujustsu (`jj`) + +## Basic Operations + +### Status & Log + +`jj status`: show current status of the working copy +`jj log -r|--revisions `: show commits of a given revset +`jj log -r|--revisions ::@`: show all ancestors of the working copy + + +### Describing & Creating Commits + +`jj describe -m|--message `: add a description to the working copy +`jj new -m|--message `: create a new commit after `` with the given description + +### Merging Commits + +`jj new ...`: create a new commit after listed parents diff --git a/mkdocs.yml b/mkdocs.yml index 305d39e..f471a35 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -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