Prepend a j to all aliases

This commit is contained in:
nasso 2025-01-26 02:10:06 +08:00
commit 373354241b
No known key found for this signature in database

View file

@ -34,20 +34,20 @@ function jj_prompt_template() {
} }
# Aliases (sorted alphabetically) # Aliases (sorted alphabetically)
alias jc='jj commit' alias jjc='jj commit'
alias jcmsg='jj commit --message' alias jjcmsg='jj commit --message'
alias jd='jj diff' alias jjd='jj diff'
alias jdmsg='jj desc --message' alias jjdmsg='jj desc --message'
alias jds='jj desc' alias jjds='jj desc'
alias je='jj edit' alias jje='jj edit'
alias jgcl='jj git clone' alias jjgcl='jj git clone'
alias jgf='jj git fetch' alias jjgf='jj git fetch'
alias jgp='jj git push' alias jjgp='jj git push'
alias jl='jj log' alias jjl='jj log'
alias jla='jj log -r "all()"' alias jjla='jj log -r "all()"'
alias jn='jj new' alias jjn='jj new'
alias jrb='jj rebase' alias jjrb='jj rebase'
alias jrs='jj restore' alias jjrs='jj restore'
alias jrt='cd "$(jj root || echo .)"' alias jjrt='cd "$(jj root || echo .)"'
alias jsp='jj split' alias jjsp='jj split'
alias jsq='jj squash' alias jjsq='jj squash'