jj-vcs with Git

Initialize from a Git repository
jj git clone url_to_git_repo
Set identity
jj git config --user user.name "John Doe"
jj git config --user user.email "john.doe@example.com"
jj metaedit --update-author
Set 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.git
Check remotes
jj git remote list
Create a bookmark
jj bookmark create main
Push a bookmark
jj git push --bookmark main