(no title)
dizzant | 3 months ago
I have been searching for a while for good tools to split/regroup diffs in a patch series. hunk.nvim looks interesting. Do you know of similar/competing tools?
I frequently hit a problem where removing a spurious hunk from an old commit causes cascading conflicts in all subsequent commits. Are there tools to propagate hunk removal into the future without the manual conflict-resolution pain?
Thanks again!
muti|3 months ago
In my experience with jj when resolving a conflict, as long as I do it in the earliest change, I will only have to do it once.
Git has the rerere setting [0] which reduces the need to resolve the same conflict over and over
0: https://git-scm.com/book/en/v2/Git-Tools-Rerere
stavros|3 months ago
bombela|3 months ago
https://git-scm.com/book/en/v2/Git-Tools-Rerere
wredcoll|3 months ago
__float|3 months ago
A tool like https://github.com/tummychow/git-absorb has been on my to-try list for a while, but for now I do it by hand.
dizzant|3 months ago