Documentation / git-log.txton commit Change $(X) -> $X to be less annoying. (2f29dd5)
   1git-log(1)
   2==========
   3v0.99.4, Aug 2005
   4
   5NAME
   6----
   7git-log - Show commit logs
   8
   9
  10SYNOPSIS
  11--------
  12'git log' <option>...
  13
  14DESCRIPTION
  15-----------
  16Shows the commit logs.  This command internally invokes
  17'git-rev-list', and the command line options are passed to that
  18command.
  19
  20This manual page describes only the most frequently used options.
  21
  22OPTIONS
  23-------
  24--pretty=<format>:
  25        Controls the way the commit log is formatted.
  26
  27--max-count=<n>::
  28        Limits the number of commits to show.
  29
  30<since>..<until>::
  31        Show only commits between the named two commits.
  32
  33
  34Author
  35------
  36Written by Linus Torvalds <torvalds@osdl.org>
  37
  38Documentation
  39--------------
  40Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  41
  42GIT
  43---
  44Part of the gitlink:git[7] suite
  45