vcs: Fix jj program structure

This commit is contained in:
Marty Oehme 2024-09-19 11:04:54 +02:00
parent f6b1c5ff2e
commit fee876b87f
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
3 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,30 @@
#!/usr/bin/env sh
if ! exist jj; then
return 1
fi
alias j='jj' # necessary for a thing as easy to type?
if exist lazyjj; then
alias lj="lazyjj"
fi
alias js="jj status"
alias jd="jj describe"
alias jn="jj new"
alias jc="jj commit"
alias jl='jj log'
alias jlo='jj log --summary'
alias jloo='jj log --patch'
alias jo="jj op log"
alias jss="jj squash"
alias jsi="jj squash --interactive"
alias je="jj edit"
alias jee="jj next --edit"
alias jun="jj undo"
alias jp="jj git push"