mercurial/commands.py
branchstable
changeset 46147 b308d750de82
parent 45760 e0ad11ab8052
child 46203 63f0e31af0e5
equal deleted inserted replaced
46081:734d051d0efb 46147:b308d750de82
  4384         ),
  4384         ),
  4385         (
  4385         (
  4386             b'r',
  4386             b'r',
  4387             b'rev',
  4387             b'rev',
  4388             [],
  4388             [],
  4389             _(b'show the specified revision or revset'),
  4389             _(b'revisions to select or follow from'),
  4390             _(b'REV'),
  4390             _(b'REV'),
  4391         ),
  4391         ),
  4392         (
  4392         (
  4393             b'L',
  4393             b'L',
  4394             b'line-range',
  4394             b'line-range',
  4446 
  4446 
  4447     Print the revision history of the specified files or the entire
  4447     Print the revision history of the specified files or the entire
  4448     project.
  4448     project.
  4449 
  4449 
  4450     If no revision range is specified, the default is ``tip:0`` unless
  4450     If no revision range is specified, the default is ``tip:0`` unless
  4451     --follow is set, in which case the working directory parent is
  4451     --follow is set.
  4452     used as the starting revision.
       
  4453 
  4452 
  4454     File history is shown without following rename or copy history of
  4453     File history is shown without following rename or copy history of
  4455     files. Use -f/--follow with a filename to follow history across
  4454     files. Use -f/--follow with a filename to follow history across
  4456     renames and copies. --follow without a filename will only show
  4455     renames and copies. --follow without a filename will only show
  4457     ancestors of the starting revision.
  4456     ancestors of the starting revisions. The starting revisions can be
       
  4457     specified by -r/--rev, which default to the working directory parent.
  4458 
  4458 
  4459     By default this command prints revision number and changeset id,
  4459     By default this command prints revision number and changeset id,
  4460     tags, non-trivial parents, user, date and time, and a summary for
  4460     tags, non-trivial parents, user, date and time, and a summary for
  4461     each commit. When the -v/--verbose switch is used, the list of
  4461     each commit. When the -v/--verbose switch is used, the list of
  4462     changed files and full commit message are shown.
  4462     changed files and full commit message are shown.