Tagged Questions
The difftool tag has no wiki summary.
28
votes
10answers
5k views
git difftool, open all diff files immediately, not in serial
The default git diff behavior is to open each diff file in serial (wait for previous file to be closed before opening next file).
I'm looking for a way to open all the files at once - in ...
4
votes
1answer
520 views
git difftool — how to skip a certain file?
when I do a git difftool, I get the message Hit return to launch 'araxis':. I found out that I can terminate the whole diffing by pressing CTRL-C, but how about skipping a single file?
Is this ...
3
votes
1answer
151 views
.gitattributes not making a difference, trying to skip files when using git difftool
I've read the Git Pro website and I've read multiple answers on StackOverflow, but sadly I am simply unable to make .gitattributes work for me.
Whenever I'm using git difftool, it will attempt to ...
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
84 views
Use Xcode 4 as Git difftool
I want to use Xcode 4's "Version Editor" view as my standard difftool for Git.
In other words, I want to be able to set this option:
git config --global diff.external <XCODE>
And have the ...
2
votes
1answer
124 views
Git: configure patterns for difftool and mergetool
In Mercurial, one can define a pattern for external diff and merge tools (so that they are called only for files matching the pattern specified):
[diff-patterns]
**.ext = difftool
[merge-patterns]
...
2
votes
1answer
140 views
Git difftool problem: unable to create temp-file
I'm using git with Kaleidoscope configured as the difftool. It's been working fine for months. It was working a day or two ago as well. Today, when I tried doing a "git difftool", suddenly, git ...
2
votes
1answer
95 views
WinMerge via git difftool keeps prompting for second file
I used @VonC's excellent instructions to configure my development system so that git difftool <BRANCH1> <BRANCH1> will invoke WinMerge. Here is what I did:
Placed the following in ...
2
votes
1answer
118 views
`git difftool` refuses to run under Emacs inferior shell
When I type git difftool under plain cygwin shell, I just receive benign exit:
~/sb/ws> git difftool
~/sb/ws>
But when I type exactly the same thing under Emacs inferior shell (running the ...
2
votes
1answer
182 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 ...
2
votes
1answer
241 views
Getting Beyond Compare to Diff 2 Branches Simultaneously
>>git difftool branch1 branch2 opens my difftool (Beyond Compare:BC) with every file that has a diff between the branches.
I have to close BC after each file just for it to reopen with the next ...
1
vote
1answer
129 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
87 views
Using a visual tool to view changes on git repository
I'm coming to an existing project in which people used git to track everything from scratch. I want to have a tool to view the differences between several commits. gitk does a good job, but talking ...
1
vote
2answers
613 views
Is Git's auto-detection scripted or is it within some Git executable?
This question is based on VonC's comment at the thread.
Is Git's auto-detection for difftool or mergetool scripted or is it within some Git executable?
1
vote
2answers
2k views
Unable to understand how Git's difftool configs are set
I needed to use in my old Git similar settings to the following to be able use difftool. The settings are not exactly the same, since I by accident removed my old .gitconfig.
[merge]
...
0
votes
2answers
361 views
Git and DiffTool problems : What do LOCAL and REMOTE point to?
Ive been working on getting tortoisemerge working as the difftool option in Git with my .gitconfig file currently showing :
[diff]
tool = tortoise
[difftool "tortoise"]
cmd = ...
0
votes
1answer
47 views
How do you change the program team explorer uses for comparisons?
I would like to have team explorer use BeyondCompare or SourceGear's diffmerge in order to do my conflict resolution in team explorer. I know its possible, but where is the setting for that and what ...
0
votes
1answer
122 views
Comare and Edit Branches in Git with a Mergetool
I have 2 branches that I can compare/diff using my difftool (Beyond Compare).
However, the files used for the diff are temporary copies and not the actual files from the current branch.
This means ...
0
votes
2answers
162 views
git difftool problem: not setting LOCAL, REMOTE variables
According to doc and various answers here git difftool will invoke the specified executable (usually a shell script) with environment variables LOCAL and REMOTE set to the file paths. But when I try, ...
0
votes
1answer
405 views
How can I get full filenames from Git difftool (for Microsoft Word “Compare Documents” feature)?
I am using the latest version of Git (1.6.6) on a Mac. My wife wants to use Git to manage her fiction writing as long as she can still use Microsoft Word 2008 (Mac). Instead of pushing her into saving ...