diff --git a/vcs/jj/config/sh/alias.d/jj.sh b/vcs/jj/config/sh/alias.d/jj.sh index b6046b4..4c603c7 100644 --- a/vcs/jj/config/sh/alias.d/jj.sh +++ b/vcs/jj/config/sh/alias.d/jj.sh @@ -36,9 +36,8 @@ alias jsi="jj squash --interactive" # oops buttons alias ju="jj undo" -# for damn,-forgot-to-split-this-commit workflow -# Creates a new commit before with your selected changes, lets you describe it and carry on -alias ji="jj new -B@ --no-edit && jj squash --interactive && jj edit '@-' && jj describe && jj edit '@+'" +# allows you to split the current change into multiple +alias ji="jj split" # revset info alias jl="jj log -T builtin_log_oneline"