jj-commit
creates a new commit from the current working-copy changes in Jujutsu
TLDR
Create commit with message
$ jj commit -m "[message]"
Commit interactively$ jj commit -i
Commit with editor$ jj commit
SYNOPSIS
jj commit [options]
DESCRIPTION
jj commit creates a new commit from the current working-copy changes in Jujutsu. The working copy becomes the child of the new commit. Unlike git, jj automatically treats the working copy as a commit, so this command finalizes the current changes.
PARAMETERS
-m, --message msg
Commit message.-i, --interactive
Interactive mode to select changes.
