I would greatly speed up some of my workflows (and reduce issues with live local testing since the working tree would remain untouched during the process) if git absorb could trigger git revise instead of git rebase for its needs. I currently do this manually, but having it automatically triggered like rebase can be would be nice.
The only major difference is rebase needs the --autostash argument, while this does not exist and is not relevant with git revise. Otherwise the usage should be the same.
I would expect something like --and-revise or --and-rebase --use-revise to accomplish this.
I would greatly speed up some of my workflows (and reduce issues with live local testing since the working tree would remain untouched during the process) if
git absorbcould triggergit reviseinstead ofgit rebasefor its needs. I currently do this manually, but having it automatically triggered like rebase can be would be nice.The only major difference is rebase needs the
--autostashargument, while this does not exist and is not relevant withgit revise. Otherwise the usage should be the same.I would expect something like
--and-reviseor--and-rebase --use-reviseto accomplish this.