Glossary
Search and filter commands for git → jj
All 35 commands
git
jj
git initjj git initgit clone <url>jj git clone <url>git statusjj status (jj st)git logjj loggit diffjj diffgit diff --stagedjj diff --from @-git add . && git commit -m "msg"jj describe -m "msg"git commit --amendjj describe (on @)(start new work)jj newgit checkout <commit>jj new <commit>git checkout <commit> (edit)jj edit <commit>git rebase -i (fixup)jj squashgit rebase -i (split)jj splitgit rebase <onto>jj rebase -d <onto>git cherry-pick <commit>jj new <parent>; jj squash --from <source>git show <commit>jj show <commit>git branch <name>jj bookmark create <name>git checkout -b <name>jj new; jj bookmark create <name>git branch -d <name>jj bookmark delete <name>git branch -m <old> <new>jj bookmark rename <old> <new>git branchjj bookmark listgit fetchjj git fetchgit pushjj git pushgit push -u origin <branch>jj git push -b <bookmark>git pulljj git fetch; jj rebase -d <bookmark>@origingit reflog; git reset --hardjj undo(see operation history)jj op loggit reset --hard <commit>jj op restore <operation>git revert <commit>jj new <commit>; jj new; jj describe -m "Revert"git status (see conflicts)jj statusgit add <resolved>jj resolve(view conflicts)jj resolve --listgit log --graph --onelinejj log --graph(find commits to rebase)jj log -r 'main..@'git describejj describe