Meld might be useful for comparison, but in my opinion it is inconvenient as a git merge tool. For git merge I need four panels: original file, version A, version B, merged result. Meld has only three panels. Currently I am using KDiff3. It is a little buggy and doesn't have a nice UI but it is the best open source merging tool that I am aware of. It allows choosing lines from original file, from A, B and manual edit…
> original file, version A, version B, merged result Isn't one of version A or B the original file? What am I missing?
Meld is a visual diff and merge tool targeted at developers
61–70 of 146 posts
Re: Meld is a visual diff and merge tool targeted at developers
#62As a long time Sublime Text[1] user, I've been using Sublime Merge[2] since the day it's been launched and it brings me the same speed and minimalism I get with Sublime Text and has evolved quite a lot to be able to do most things I need in a merge tool. Not affiliated with them in any way by the way. [1] https://www.sublimetext.com/ [2] https://www.sublimemerge.com/
Re: Meld is a visual diff and merge tool targeted at developers
#63Meld might be useful for comparison, but in my opinion it is inconvenient as a git merge tool. For git merge I need four panels: original file, version A, version B, merged result. Meld has only three panels. Currently I am using KDiff3. It is a little buggy and doesn't have a nice UI but it is the best open source merging tool that I am aware of. It allows choosing lines from original file, from A, B and manual edit…
> original file, version A, version B, merged result Isn't one of version A or B the original file? What am I missing?
Re: Meld is a visual diff and merge tool targeted at developers
#64IMHO, Meld is the second best open source tool for doing this. On Windows, WinMerge[1] is a better alternative. Too bad is Windows only. For a non-FOSS and cross platform solution I recommend BeyondCompare (U$30.00)[2]. It replicates most of WinMerge UI. [1] https://winmerge.org/ [2] https://scootersoftware.com/
Do you think the pro version of BeyondCompare is worth it compared to the standard one?
Re: Meld is a visual diff and merge tool targeted at developers
#65Re: Meld is a visual diff and merge tool targeted at developers
#66If you want to use it with git: git config --global diff.tool meld git config --global --add difftool.prompt false And use git difftool instead of git diff
On my Ubuntu based (Xubuntu, Mint) workstations this works without any configuration $ meld .
Re: Meld is a visual diff and merge tool targeted at developers
#67[0] e.g. https://stackoverflow.com/questions/10594653/is-there-any-wa...
Re: Meld is a visual diff and merge tool targeted at developers
#68IMHO, Meld is the second best open source tool for doing this. On Windows, WinMerge[1] is a better alternative. Too bad is Windows only. For a non-FOSS and cross platform solution I recommend BeyondCompare (U$30.00)[2]. It replicates most of WinMerge UI. [1] https://winmerge.org/ [2] https://scootersoftware.com/
I setup Git to use Perforce’s P4Merge as the Git mergetool. P4Merge is cross-platform and free and quite good.
P4Merge is very good at the second but not so much at the first.
Also, to this date it doesn't have an OS-X version for M1 CPUs.
Re: Meld is a visual diff and merge tool targeted at developers
#69Re: Meld is a visual diff and merge tool targeted at developers
#70IMHO, Meld is the second best open source tool for doing this. On Windows, WinMerge[1] is a better alternative. Too bad is Windows only. For a non-FOSS and cross platform solution I recommend BeyondCompare (U$30.00)[2]. It replicates most of WinMerge UI. [1] https://winmerge.org/ [2] https://scootersoftware.com/
Do you think the pro version of BeyondCompare is worth it compared to the standard one?
Pro version gives you 3 panel merging. If you use that a lot then it might be worth it. Or, instead, use P4Merge for it.