The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
176 views

How to use opendiff as default mergetool

Hi I am trying to use opendiff as the git mergetool, but when I run mergetool I get this error message: The merge tool opendiff is not available as 'opendiff' What am I doing wrong? It was ...
0
votes
2answers
98 views

have “git show” use opendiff on osx to show commits

I found ways to use opendiff for "git diff" but "git show" doesn't have quite the same options.
0
votes
1answer
67 views

How #ifndef works in different files

So I was trying to include the libraries I have declared in my main.cpp to my header.h //In my main.cpp #include <cmath> #include <deque> #include <vector> using namespace std; ...
0
votes
1answer
143 views

opendiff or other merge tool talking with remote machine's Git over ssh

How can I use opendiff or other visual merge tools to connect to a remote Linux server over ssh and handle Git merge conflicts with a local visual merge tool? Can I configure git locally to proxy for ...
-1
votes
1answer
187 views

What is a certain way to make Git diff and merge use opendiff?

I am using the github advice to make it work: https://gist.github.com/329690 and right now my global config file contains: [merge] tool = opendiff external = ...
0
votes
2answers
976 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 ...
4
votes
3answers
2k views

Opendiff does not start anymore

Today I tried to use opendiff on my MacBook Pro and I got this error. xcode-select: Error: No Xcode folder is set. Run xcode-select -switch <xcode_folder_path> to set the path to the Xcode ...
6
votes
2answers
932 views

I can't make git diff use opendiff

I want to use opendiff as default diff-tool for git diff. This used to work but for some reason stopped working. I'm using a script: echo opendiff $2 $5 > opendiff-git.sh which is set in ...
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: ...