Replies: 2 comments 12 replies
-
Could you provide more details of |
Beta Was this translation helpful? Give feedback.
-
The usefulness depends on your workflow. I use The big reason we don't deal with conflict resolution is that its a stateful operation directly on the working tree. We don't operate on the working tree and I'm not aware of a way to plug into git's state management an alternative stateful operation. If people have ideas on resolving these problems or bypassing them, I'd be more open to conflict resolution. @arxanas how does git-branchless handle conflicts? |
Beta Was this translation helpful? Give feedback.
-
I see that git-stack is not setup to resolve conflicts. From the README:
Okay, cool. So how do you
git rebase
to resolve a conflict? I tried doing an interactive rebase and resolving the conflict, which obviously split my branch in two. I then did agit stack --repair
to unify the split branches but got an error aboutcherry-pick conflicts
. Am I understanding this correctly and the second there is a conflict you have to do ALL operations to get back into a usable state outsidegit-stack
? If so, the utility of this seems limited, since I have to make amending older commits and repairing the branches completely manually part of my workflow.Beta Was this translation helpful? Give feedback.
All reactions