The filemerge tag has no wiki summary.
0
votes
0answers
3 views
Union or Merge Two Files' Blocks in Ext4
Suppose I have two files X and Y, they could be binary files. I want to combine these two files such that:
Disk blocks of Y get appended to that of X.
By append I mean, blocks of Y should appear ...
0
votes
1answer
15 views
SourceTree filemerge quits immediately and creates 4 files. How to fix it?
yesterday I could merge files in sourcetree with the external tool filemerge. Today, sourcetree wanted me to register me, and after my successful registration, I couldnt start filemerge.
When I ...
0
votes
0answers
25 views
How can I set up a filter to merge csv files in filemerge?
Filemerge (default merge program for SourceTree) appears to be treating a single value difference in a .csv file as a whole line difference - that is, any change to a row will make it think the whole ...
0
votes
3answers
66 views
Cleaning up after a conflicted git merge?
I had a small conflict in a .h header file in a project I'm working on. This project is tracked in Git.
Fortunately, the conflict was very simple to solve. I used
git mergetool
And chose the ...
0
votes
1answer
88 views
Downloading and merging multipart file in javascript
I need some help with below requirement.
Download huge multipart csv file from webserver and join those parts at client side before opening it for user.
I can get the number of parts and have their ...
0
votes
2answers
351 views
How to merge two text files using batch script?
I have two text files as A.txt and B.txt with the below contents:
A.txt
value_a1,value_a2
value_b
value_c
value_d
value_e1,value_e2
B.txt
12,14
13
15
16
23,34
I want output file C.txt as
...
0
votes
1answer
43 views
Using Filemerge how to you get to see the lower pane. The one with the results in?
You know, you do a clean install and the pane at the bottom has disappeared.
I loved that pane.
7
votes
2answers
360 views
FileMerge error message when used with Git difftool
I use FileMerge as the difftool tool for Git. Recently, I started receiving a weird error message:
Unable to load platform at path /Applications/Xcode.app/Contents/
...
15
votes
1answer
679 views
Unable to load platform at path
when use filemerge to solve hg conflict, I got this error
FileMerge[18002:707] Unable to load platform at path
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
0
votes
1answer
269 views
Filemerge “unable to save file” in mac os x 10.8 [closed]
When save merge result in mac os x 10.8, it show the error :"Unable to save file"?
How to solve it? thank you!
0
votes
0answers
224 views
uninstall xcode and install xcode command line tools — how to get filemerge again?
I have uninstalled xcode and installed the June 2012 command line tools for Xcode.
Now I cannot find filemerge when i run git difftool.
I get
Error: Can't run /Developer/usr/bin/opendiff (no such ...
0
votes
1answer
136 views
How to merge two xml file (Web.config)?
I have two xml files,if i use xmlDiffPatch of microsoft,it do Delete Element,but i Dont want to delete nodes,just replace value or add nodes,How to do that?for exampel:
web1.config
is like '
...
8
votes
3answers
157 views
Is there any tool for combining front-end JS files in NodeJS?
I have front-end JS files:
-js
-a.js
-b.js
-c.js
and I request http://example.com/js/all.js, I will get a file with all contents of a.js, b.js and c.js.
Is there any library ...
0
votes
2answers
974 views
trying to setup svn external diff program on mac
I'm having problems trying to setup an external diff program for svn on Mac OSX Lion.
I have both xxdiff and opendiff installed.
I add these lines to ~/.subversion/config:
diff-cmd = opendiff
...
0
votes
1answer
2k views
How to merge two files in python
I have two tab delimited csv files (with headers) that I need to merge in python.
Also, in the merged file I want to add a column in the end to identify the files because though they have same ...
1
vote
1answer
286 views
Pack a directory (merge files and directories into exe or msi)
There are a lot of tutorials that show on how to merge multiple files (not including folders). It will be nice if I could merge a directory and it's files so that when the user clicks on the exe or ...
8
votes
6answers
367 views
How to perform a SQL-like Join in Perl?
I have to process some data by combining two different files. Both of them have two columns that would form a primary key that I can use to match them side-by-side. The files in questions are huge ...
0
votes
1answer
202 views
Config: Fetch git data then merge it with git mergetool
I've successfully set up Kaleidoscope as my default git difftool, and works like a charm. But when I make a fetch then git difftool, I can see what has changed, yet I cannot choose or merge what I ...
3
votes
4answers
638 views
Large PDF File Merger API?
Currently the company I work for generate our invoices as separate PDF files for each page. The company website has to have these as a single PDF file, so they merge the files after grouping them. ...
1
vote
1answer
139 views
why doen't conflict diffs load on Filemerge, when other diffs do?
I have GIT set up to load Diffs in filemerge, but when there are conflicts, it just prints the diff to terminal.
Is there a way around this, or a better app to handle conflicts?
0
votes
2answers
366 views
Filemerge with git - It's all gone horribly wrong
Following this tutorial to the letter, whenever I now run a diff, I get the following:
~~$ git diff
fatal: cannot exec '/Users/john/git-diff-cmd.sh': Permission denied
external diff died, stopping at ...
1
vote
1answer
760 views
xCode FileMerge - “Line ending differ”
When I open the 2 files as left & right in FileMerge,
I can see the things like the following screenshot.
As you can see, it doesn't show contents of the right file.
Before I saw this error, I ...
9
votes
3answers
5k views
git diff with opendiff gives “Couldn't launch FileMerge” error
I have git configured to use ~/bin/opendiff-git.sh as my external diff tool. That script looks like this:
opendiff $2 $5
When I try and do a git diff from the command line, I get this message:
...
0
votes
2answers
49 views
combining few jpgs(and a txt) to a single jpg file
i have a sort of a canvas on my site, (not canvas though for the need of support in IE) where images are loaded to and modified.
At the end of the process i'd like to take all the files used in the ...
0
votes
1answer
590 views
How to integrate FileMerge with Komodo 6 IDE?
After reading this post:
http://community.activestate.com/forum/subversion-external-diff-tool
I've tried using the following command in the "diff options" text box in preferences > source code ...
2
votes
1answer
507 views
Git difftool — how to ignore images?
i'm a git / osx / unix newbie but in my current job, i'm using them all. i run "git difftool" a lot to compare changes in a commit, but any time it runs into an image, i get an error from FileMerge ...
5
votes
3answers
1k views
How do you do a 3-way merge in FileMerge?
I see the option for specifying three files (left, right, and ancestor), but it doesn't seem to be possible to actually display the ancestor.
The bottom pane shows the result of the merge. I'd ...
7
votes
1answer
647 views
FileMerge .nib file type cannot be merged
I am trying to merge two .nib files. FileMerge has no problem showing the comparison of the two files. I am trying to keep all the settings in one file (i.e. right side) except for two settings that ...
1
vote
1answer
625 views
FileMerge: This file type cannot be merged
FileMerge.app fails with an odd message:
This file type cannot be merged.
when I try to save successfully merged text files, which definitely can be merged.
(I invoke FileMerge from git using ...
17
votes
3answers
7k views
How do I pipe in FileMerge as a diff tool with git on OS X?
I'm new to git on OS X, and I'm using it via the command line. I come from the world of Tortoise SVN and Beyond Compare on Windows.
I want to be able to send diffs to FileMerge.
I was able to do ...
2
votes
4answers
681 views
iPhone version control tools (subversion)
I've used iPhone SDK and tools for several months. XCode seems pretty nice, but there is one tool which I don't get: FileMerge. How can anyone use it for comparing files or doing merge?
Seriously ...
0
votes
4answers
1k views
How do I open a .diff file on a mac?
I have a .diff file but I don't know how to open it. I trie using FileMerge but that doesn't give me an option to open a .diff file.
Any ideas? Thanks.
15
votes
4answers
5k views
Configuring Mercurial - FileMerge for Apple Mac OS X
How do I configure Apple's FileMerge program to function as Mercurial's merge tool? I have my .hgrc file setup in my home directory and I simply want to configure FileMerge as the merge program.
0
votes
1answer
335 views
How do I get the TeamWare filemerge GUI to run on OpenSolaris?
How do I get the TeamWare filemerge GUI to run on OpenSolaris?
% filemerge
ld.so.1: filemerge: fatal: libtt.so.2: open failed: No such file or directory
Killed
TeamWare is no longer a supported ...
0
votes
2answers
195 views
Unable to diff dot-files in Mac's FileMerge
I have set my FileMerge not to ignore any file.
However, it ignores my dotFiles.
How can you make FileMerge to diff dotFiles?
1
vote
3answers
1k views
solaris filemerge and pstack equivalents for linux
Accepting the possibility of extreme ridicule, I must admit that I really miss sun Teamware's filemerge tool. I have switched from solaris to red hat linux, and find myself regularly missing filemerge ...