jj: Revert js to simple jj status alias

I have gotten more used to using `jw` to 'show' the current changes in
the working copy, and having `js` be _both_ status and show has become
more confusing than helpful. For now, we just revert it to be a simple
alias for the status command.
This commit is contained in:
Marty Oehme 2025-02-22 11:14:55 +01:00
parent 5a9be5479d
commit 89737536ea
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -14,13 +14,7 @@ alias jds="jj describe"
alias jc="jj commit"
# finding out the current snapshot
js() {
if [ "$#" -eq 0 ]; then
jj status
else
jj show "$*"
fi
}
alias js="jj status"
alias jw="jj show"
alias jd="jj diff"