-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
possibility to specify custom rebase options? #66
Comments
so the problem with this is it massively complicates the cli of git-absorb. the cli of git-rebase is sizable and complex - there are tons of options, some that are legal with each other and some that aren't, etc. we would basically have to add every single one of these options to git-absorb and i really do not want to go down that slippery slope. to me there are a few principled ways to approach this:
i would probably consider prs for any of these, but i'm not adding options from git-rebase directly into the clap args. |
thanks for the response 👍 that all makes sense to me. i think i like the sound of option 1, but you're right in that this sort of stuff shouldn't be git-absorbs responsibility. i was also just wondering did you have a nice solution to this in mind. so thanks! |
would it makes sense to allow custom rebase options for use with --and-rebase?
for example using the new
rebase --update-refs
feature of gitotherwise i need to do it manually, like
but maybe it could be nice to do it in 2 steps like
The text was updated successfully, but these errors were encountered: