tig is a possible alternative to using the git log command, available on the major open source *nix distributions.
On debian or ubuntu try installing and running as follows:
$ sudo apt-get install tig
(tig gets installed)
$ tig
(log is displayed in pager as follows, with current commit's hash displayed at the bottom)
2010-03-17 01:07 ndesigner changes to sponsors list
2010-03-17 00:19 rcoder Raise 404 when an invalid year is specified.
2010-03-17 00:06 rcoder Sponsors page now shows sponsors' level.
-------------------------- skip some lines ---------------------------------
[main] 531f35e925f53adeb2146dcfc9c6a6ef24e93619 - commit 1 of 32 (100%)
Since markdown doesn't support text coloring, imagine: column 1: blue; column 2: green; column 3: default text color. Last line, highlighted. Hit Q or q to exit.
tig justifies the columns without ragged edges, which an ascii tab (%x09) doesn't guarantee.
For a short date format hit capital D (note: lowercase d opens a diff view.) Configure it permanently by adding show-date = short to ~/.tigrc; or in a [tig] section in .git/configure or ~/.gitconfig.
To see an entire change:
- hit Enter. A sub pane will open in the lower half of the window.
- use k, j keys to scroll the change in the sub pane.
- at the same time, use the up, down keys to move from commit to commit.
Since tig is separate from git and apparently *nix specific, it probably requires cygwin to install on windows. But for fedora I believe the install commands are $ su, (enter root password), # yum install tig. For freebsd try % su, (enter root password), # pkg_add -r tig.
By the way, tig is good for a lot more than a quick view of the log:
Screenshots &
Manual