this post was submitted on 03 Nov 2025
64 points (98.5% liked)
Programming
23587 readers
120 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
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
I use emacs's magit for git stuff (the bulk of things) and emacs's ediff for most other things.
Good if you know emacs, but hard to recommend using it for someone who doesn't.
EDIT: Oh, one exotic utility that's useful for some rare cases, not really for interactive merging of code
wdiff for word-level diffing. Most code can reasonably be diffed on a line-by-line basis, but that's not true for some text formats, which can have very long lines. Human, natural language in text format, is one good example.