this post was submitted on 06 Oct 2025
827 points (96.7% liked)
Programmer Humor
26799 readers
1152 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Depending on how structured your commits have been, it can either be very difficult to get a rebase through or a complete breeze. There are some features to make it easier -
rerere
being the main one I'm thinking about.Is that what interactive rebase tools use?
I don't do CLI git
You enable it using
git config
, after that it will apply to whatever frontend you're using.