Jay Levitt
Jay Levitt

Reputation: 1720

What graphical git tool for Mac can show per-file history better than github?

I want a nice graphical version of git log -p some/file.rb on my Mac. Tower 1.2 boasts a new File History view, but that just shows two dropdowns with SHA1s to compare; it's slightly less useful than a MediaWiki "compare versions" history (it doesn't even show commit messages).

I can't find anything in GitNub or Gitti that does this. GitX does it about as well as GitHub, but it leaves me wishing I could just scroll up and down to see the diffs instead of having to click each commit. Is there a better tool?

Upvotes: 8

Views: 2554

Answers (2)

AamirR
AamirR

Reputation: 12198

I am used to and like how Netbeans shows file history, so I just create a project in netbeans with the option PHP Application with Existing Sources, now you can enjoy per file history and graphical diff of each commit, like so:

  1. Locate your file in projects pane, on the left
  2. Right click > Git > Show History
  3. Choose Diff From 2 buttons on the left, Summary and Diff
  4. Now tap each commit

Upvotes: 0

pgilmon
pgilmon

Reputation: 858

I would give SourceTree a try. It has a nice and powerful GUI.

Upvotes: 4

Related Questions