mercurial/commands.py
changeset 1557 f7d9823e65df
parent 1552 7509fa02437f
child 1560 6efad1cc07de
equal deleted inserted replaced
1556:561b17b7d3a2 1557:f7d9823e65df
  1473     """show revision history of entire repository or files
  1473     """show revision history of entire repository or files
  1474 
  1474 
  1475     Print the revision history of the specified files or the entire project.
  1475     Print the revision history of the specified files or the entire project.
  1476 
  1476 
  1477     By default this command outputs: changeset id and hash, tags,
  1477     By default this command outputs: changeset id and hash, tags,
  1478     parents, user, date and time, and a summary for each commit. The
  1478     non-trivial parents, user, date and time, and a summary for each
  1479     -v switch adds some more detail, such as changed files, manifest
  1479     commit. When the -v/--verbose switch is used, the list of changed
  1480     hashes or message signatures.
  1480     files and full commit message is shown.
  1481     """
  1481     """
  1482     class dui:
  1482     class dui:
  1483         # Implement and delegate some ui protocol.  Save hunks of
  1483         # Implement and delegate some ui protocol.  Save hunks of
  1484         # output for later display in the desired order.
  1484         # output for later display in the desired order.
  1485         def __init__(self, ui):
  1485         def __init__(self, ui):