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