Tagged Questions
Meld is a graphical Linux application used for viewing and merging differences between files.
13
votes
9answers
10k views
What are the alternatives for meld (graphical diff tool) on OSX
I mostly develop on Linux and meld is indispensable for me. However, when I'm on the road I use a MacBook (leopard) and I want to use the same set of tools as on my main development box, meld being ...
11
votes
6answers
2k views
View differences of branches with meld?
I know that I can view the difference between HEAD and current state with meld .. But how can I view the differences between branches, for example master and devel with meld?
At the moment I do the ...
4
votes
4answers
2k views
Use a different diff command with CVS?
Is it possible to use a different diff program with CVS? I'd like to use something like meld to give me a side-by-side graphical view of the repository and my changes. It's out of my control to use ...
3
votes
1answer
502 views
How to make meld prefer an SVN diff over a CVS diff
We have some directories that are tracked in both CVS and SVN (loooong story). When I change a file in one of these and run meld it diffs it against the SVN version. However for some of the other ...
3
votes
1answer
1k views
Installing meld on OS X
After I got MacPorts installed and did a 'sudo port -v selfupdate', I try to install meld.
The installation just starts to Fetching all kinds of stuff
gnome-comoon
perl5.8
perl5
pkgconfig
.....
this ...
3
votes
2answers
2k views
git-difftool: full file tree compare using meld?
Is there an easy way to compare the file tree of an old git commit with the working file tree, in meld?
git-difftool does something very similar, but I don't want it to actually do any diffing; the ...
2
votes
1answer
240 views
Why does 'git mergetool' (meld) show conflict markers?
Why does 'git mergetool' (meld) show me the ancestor view WITH conclict markers? This is totally wrong and I've never understood why it does this. How can I fix it?
A 3 way merge should show
[ Your ...
2
votes
3answers
3k views
How to merge using Meld on Linux
I want to resolve some conflicts of an SVN file using Meld. I'm using the Head version and my version to resolve the conflicts. I am unable to find how to do the merge operation and resolve the ...
2
votes
3answers
992 views
Subversion diff for zipped xml file
I'm using MySQL Workbench to maintain the database schema for an application. The .mwb file that Workbench uses, which is a zipped XML document, is kept in a Subversion repository.
The file is ...
1
vote
1answer
130 views
Why “git difftool” does not open the tool automatically?
I configured git like this:
git config --global diff.tool meld
When I run:
git difftool
I get the following message:
Viewing: 'hello.txt'
Hit return to launch 'meld':
Then, if I press ...
1
vote
2answers
309 views
How to set up svn conflict resolution with meld?
I've specified merge-tool-cmd = meld in my Subversion config. When I go to resolve a merge conflict using option l from the presented conflict resolution options, I receive the message:
meld: error: ...
1
vote
1answer
98 views
splitting a file with diff conflict markers into separate files
I use a dcvs (mercurial) and had a merge conflict a few minutes ago. For various reasons, I can't have it just open meld when it has a conflict, so I let it add conflict markers to the file:
...
1
vote
1answer
693 views
how to use meld for reviewing remote changes. Using git as dvcs
I'm using GIT as my DVCS, on Ubuntu 10.04. Simply running:
meld .
in your current working directory is awesome...shows what are the diffs from your working folder to last commit.
I'd like to be ...
1
vote
1answer
327 views
Does 'meld' have a command-line style?
Does meld support automatic merging ability, like 'kdiff3' does?
With kdiff3, you can do:
kdiff3 file1 file2 -o outfile
and do not have to open the GUI.
So can you do such with meld? I didnt find ...
1
vote
2answers
2k views
Unable to install Meld by MacPorts
I found that other people too have had trouble in installing Meld to Mac by MacPorts.
I run
sudo port install meld
I get
sudo port install meld
---> Activating shared-mime-info @0.60_0
...
0
votes
0answers
45 views
Remove specific character from code [closed]
Possible Duplicate:
^M at the end of every line in vim
After merging project with Meld at the end of each line in code apperead such symbols ^M.
They only visible in Vim. What does this ...
0
votes
1answer
73 views
How to get external merge tools to work with svn on linux?
How do I get a GUI-based merge tool to work with command line SVN in linux? I understand that there are many options like meld, svn Diff, etc. out there. All of them require a helper script to allow ...
0
votes
0answers
35 views
M-x magit-status starts Meld befire magit
Just installed magit on my ubuntu. The problem is when I want to open it and type in M-x magit-status - I have Meld window open and show me all the changes as if I asked to diff them (but I did not). ...
0
votes
2answers
371 views
Shell scripts for Meld Nautilus context menu
Beyond Compare provides "Select for compare" and "Compare to Selected" by using two nautilus scripts (stored in /home/user/.gnome2/nautilus-scripts).
Script 1: Select for compare
#!/bin/sh
...
0
votes
1answer
205 views
diff3-like program for windows?
I'm a linux user, and normally I use kdiff3 to compare 3 (text) files between each others (for example, when there are svn conflics).
I know of various programs to do that (like diff3 or meld) but ...
0
votes
1answer
150 views
Combining 2 patch files that patch a number of files in a directory + resolving conflicts
I have a dir with thousands of files and 2 patch files that apply to the same dir. Each patch file patches 20-30 files in dir or it's subdirs.
If I apply either patch to the common ancestor dir, it ...