edA-qa mort-ora-y
edA-qa mort-ora-y

Reputation: 31901

git tool comparable to bzr qlog

For the purpose of code review I got quite used to using the bzr qlog command to visually review the changes between two commits. I am now starting to use git and am looking for the equivalent. The three primary features I want are:

The closest git combination I've found so far is to register meld as the git diff tool and then use git cola to compare revisions. Unfortunately the revision viewer here is limited and I can only compare one file at a time.

My fallback solution is of course to use bzr-git and then simply run bzr qlog. I've tried this and it seems to work alright, I'm just concerned that the moment I start using git-specific features in the repository it will start failing me.

So, is there a git tool, or series of tools, which I can get the same basic result without too much effort?

NOTE: I'm not interested in commercial solutions like SmartGit

Upvotes: 7

Views: 400

Answers (2)

Stephen Emslie
Stephen Emslie

Reputation: 11015

If you're a vim user, check out the excellent vim fugitive and its Gdiff command.

Upvotes: 1

Ondrej Slinták
Ondrej Slinták

Reputation: 31930

Have you tried gitk? It should be bundled with git by default. Just run gitk from your console. It just doesn't compare revisions side by side, but in diff format (+, -,...).

Upvotes: 1

Related Questions