Add support for the git mergetool command, which runs merge conflict resolution tools to help users resolve merge conflicts.
Description:
The git mergetool command launches an interactive merge resolution program to resolve merge conflicts. It can use various merge tools like vimdiff, meld, kdiff3, etc.
Common use cases:
- Resolving merge conflicts during git merge operations
- Using graphical tools to visualize and resolve conflicts
- Automating conflict resolution workflows in development environments
This would enhance dulwich's porcelain interface by providing a user-friendly way to handle merge conflicts.
Add support for the
git mergetoolcommand, which runs merge conflict resolution tools to help users resolve merge conflicts.Description:
The
git mergetoolcommand launches an interactive merge resolution program to resolve merge conflicts. It can use various merge tools like vimdiff, meld, kdiff3, etc.Common use cases:
This would enhance dulwich's porcelain interface by providing a user-friendly way to handle merge conflicts.