jj-vcs with Git
Initialize from a Git repository
jj git clone url_to_git_repoSet identity
jj git config --user user.name "John Doe"
jj git config --user user.email "john.doe@example.com"
jj metaedit --update-authorSet a commit message
jj describe -m "message"Set a remote
jj git remote add origin git@gitlab.com:yourname/reponame.git
jj git remote add origin https://gitlab.com/yourname/reponame.gitCheck remotes
jj git remote listCreate a bookmark
jj bookmark create mainPush a bookmark
jj git push --bookmark main