jj: Add alias to list all bookmarks

This commit is contained in:
Marty Oehme 2025-05-22 13:06:02 +02:00
parent 4dc4ab39a6
commit 83e2b9f31b
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -74,7 +74,8 @@ alias jrb="jj rebase"
# 'branching' bookmark work
alias jb="jj bookmark"
jbm() {
alias jbl="jj bookmark list"
jbm() { # set 'main' bookmark to current or given change
jj bookmark set -r "${1:-@}" main
}