Most Popular Git Gui Client For Mac

Active2 months ago

What's the best tool for viewing and editing a merge in Git? I'd like to get a 3-way merge view, with 'mine', 'theirs' and 'ancestor' in separate panels, and a fourth 'output' panel.

Also, instructions for invoking said tool would be great. (I still haven't figure out how to start kdiff3 in such a way that it doesn't give me an error.)

  • GitKraken is a true cross-platform Git GUI client that includes support for Linux, Windows, and Mac. If you are looking for a client that’s across all three platforms, look no further. If you are looking for a client that’s across all three platforms, look no further.
  • GitKraken is the best cross-platform Git client in 2018! GitKraken's intuitive design increases productivity by simplifying complicated commands, integrating with popular repository hosting sites, and having a built-in code editor and merge tool.

My OS is Ubuntu.

the Tin Man

TortoiseGit is probably the most popular Git client on Windows. It’s an open-sourced port of TortoiseSVN to Git. It works as a Windows shell extension, easily integrated with Explorer and other file managers and comes with a set of helpful tools like TortoiseMerge, TortoiseBlame and TortoiseDiff.

139k27 gold badges181 silver badges261 bronze badges
andyandy
8,4819 gold badges26 silver badges27 bronze badges

closed as off-topic by Martijn PietersNov 27 '18 at 21:14

This question appears to be off-topic. The users who voted to close gave this specific reason:

  • 'Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.' – Martijn Pieters
If this question can be reworded to fit the rules in the help center, please edit the question.

18 Answers

Meld is a diff/merge tool.

Most Popular Git Gui Client For Mac

Here's how to install it on:

  • Windows: 'The recommended version of Meld for Windows is the most recent release, available as an MSI from http://meldmerge.org'

You can configure your own merge tool to be used with 'git mergetool'.

Example:

And while you are at it, you can also set it up as your difftool for 'git difftool':

Note that in Unix/Linux you don't want the $BASE to get parsed as a variable by your shell - it should actually appear in your ~/.gitconfig file for this to work.


Beyond Compare 3, my favorite, has a merge functionality in the Pro edition. The good thing with its merge is that it let you see all 4 views: base, left, right, and merged result. It's somewhat less visual than P4V but way more than WinDiff. It integrates with many source control and works on Windows/Linux. It has many features like advanced rules, editions, manual alignment...

Git Gui Client For Linux

The Perforce Visual Client (P4V) is a free tool that provides one of the most explicit interface for merging (see some screenshots). Works on all major platforms. My main disappointement with that tool is its kind of 'read-only' interface. You cannot edit manually the files and you cannot manually align.

PS: P4Merge is included in P4V. Perforce tries to make it a bit hard to get their tool without their client.

SourceGear Diff/Merge may be my second free tool choice. Check that merge screens-shot and you'll see it's has the 3 views at least.

Meld is a newer free tool that I'd prefer to SourceGear Diff/Merge: Now it's also working on most platforms (Windows/Linux/Mac) with the distinct advantage of natively supporting some source control like Git. So you can have some history diff on all files much simpler. The merge view (see screenshot) has only 3 panes, just like SourceGear Diff/Merge. This makes merging somewhat harder in complex cases.

PS: If one tool one day supports 5 views merging, this would really be awesome, because if you cherry-pick commits in Git you really have not one base but two. Two base, two changes, and one resulting merge.

the Tin Man
139k27 gold badges181 silver badges261 bronze badges
WernightWernight
23.7k18 gold badges103 silver badges121 bronze badges

My favorite visual merge tool is SourceGear DiffMerge

  • It is free.
  • Cross-platform (Windows, OS X, and Linux).
  • Clean visual UI
  • All diff features you'd expect (Diff, Merge, Folder Diff).
  • Command line interface.
  • Usable keyboard shortcuts.
LukeLuke
9,93022 gold badges80 silver badges103 bronze badges
kryger
10k6 gold badges38 silver badges57 bronze badges
Mike F

vimdiff

Once you have have learned vim (and IMHO you should), vimdiff is just one more beautiful little orthogonal concept to learn. To get online help in vim:

This question covers how to use it: How do I use vimdiff to resolve a conflict?

If you're stuck in the dark ages of mouse usage, and the files you're merging aren't very large, I recommend meld.

Ciro Santilli 新疆改造中心996ICU六四事件
168k36 gold badges644 silver badges518 bronze badges
Andrew WagnerAndrew Wagner
7,97413 gold badges61 silver badges78 bronze badges

You can try P4Merge.

Visualize the differences between file versions with P4Merge. Resolve conflicts that result from parallel or concurrent development via color coding.

The features includes:

  • Highlight and edit text file differences
  • Choose to include or ignore line endings or white spaces
  • Recognize line-ending conventions for Windows (CRLF), Mac (CR), and Unix (LF)
  • Use command-line parameters and launch from non-Perforce applications
  • Display line numbers when comparing and merging files
  • Exclude files that are modified, unique, or unchanged
  • Filter files by name or extension
  • Organize modified assets in familiar file/folder hierarchy
  • Compare JPEG, GIF, TIFF, BMP, and other file formats
  • Extend using the Qt API
  • Overlay images or display side-by-side
  • Highlight differences on overlaid images
kenorb
80.8k34 gold badges451 silver badges465 bronze badges

Best Git Gui For Mac

RonRon

IntelliJ IDEA has a sophisticated merge conflict resolution tool with the Resolve magic wand, which greatly simplifies merging:

niutechniutech
20.5k11 gold badges74 silver badges87 bronze badges

Diffuse is my favourite but of course I am biased. :-) It is very easy to use:

Git

Diffuse is a small and simple text merge tool written in Python. With Diffuse, you can easily merge, edit, and review changes to your code. Diffuse is free software.

Git Gui Windows

kenorb
80.8k34 gold badges451 silver badges465 bronze badges
Derrick Moser

Araxis Merge http://www.araxis.com/mergeI'm using it on Mac OS X but I've used it on windows... it's not free... but it has some nice features... nicer on windows though.

Git gui for macClintmClintm
2,1722 gold badges21 silver badges34 bronze badges

If you are just looking for a diff tool beyond compare is pretty nice: http://www.scootersoftware.com/moreinfo.php

Nathan FegerNathan Feger
14.8k9 gold badges52 silver badges68 bronze badges

Best Git Gui

You can change the tool used by git mergetool by passing git mergetool -t=<tool> or --tool=<tool>. To change the default (from vimdiff) use git config merge.tool <tool>.

user35149user35149

So for the git merge, you can try:

  • DiffMerge to visually compare and merge files on Windows, OS X and Linux.

  • Meld, is a visual diff and merge tool.

  • KDiff3, a diff and merge program), which compares or merges 2 or 3 text input files/dirs.
  • opendiff (part of Xcode Tools on macOS), a command line utility which launches the FileMerge application from Terminal to graphically compare files or directories, including merging.
kenorbkenorb
80.8k34 gold badges451 silver badges465 bronze badges

I've tried a lot of the tools mentioned here and none of them have quite been what I'm looking for.

Personally, I've found Atom to be a great tool for visualizing differences and conflict resolution/merging.

As for merging, there aren't three views but it's all combined into one with colored highlighting for each version. You can edit the code directly or there are buttons to use whichever version of that snippet you want.

I don't even use it as an editor or IDE anymore, just for working with git. Clean UI and very straight-forward, plus it's highly customizable.

  • You can start it from the command line and pass in a single file you want to open to, or add your project folder (git repo).

    • I would also recommend project-manager as a very convenient way to navigate between projects without filling up your tree view.
  • The only problem I've had is refreshing -- when working with large repositories atom can be slow to update changes you make outside of it. I just always close it when I'm finished, and then reopen when I want to view my changes/commit again. You can also reload the window with ctrl+shift+f5, which only takes a second.

And it's free of course.

Styx
6,0336 gold badges29 silver badges40 bronze badges
Sean McCallumSean McCallum

I use different tools for merge and compare:

Fist could be called by:

Second is called when you use git mergetool.

Popular
ephemerrephemerr

You can install ECMerge diff/merge tool on your Linux, Mac or Windows. It is pre-configured in Git, so just using git mergetool will do the job.

akjoshi
11.6k13 gold badges86 silver badges114 bronze badges
ArmelArmel

If you do use visual studio, Team Explorer built in tool is a very nice tool to resolve git merge conflicts.

CharithCharith
1,1401 gold badge10 silver badges20 bronze badges

gitx http://gitx.frim.nl/

Git Gui Tutorial

Some bugs when working with large commit sets but great for browsing through changes and picking different changes to stage and then commit.

Blake LucchesiBlake Lucchesi

Git Gui Client

Not the answer you're looking for? Browse other questions tagged gitversion-controlmerge or ask your own question.