/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Ian Clatworthy
  • Date: 2009-03-26 12:57:41 UTC
  • mto: (4214.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4215.
  • Revision ID: ian.clatworthy@canonical.com-20090326125741-rog22bmdq6oxwfzr
log mainline by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
1933
1933
        --show-ids  display revision-ids (and file-ids), not just revnos
1934
1934
 
1935
1935
      Note that the default number of levels to display is a function of the
1936
 
      log format. If the -n option is not used, ``short`` and ``line`` show
1937
 
      just the top level (mainline) while ``long`` shows all levels of merged
1938
 
      revisions.
 
1936
      log format. If the -n option is not used, the standard log formats show
 
1937
      just the top level (mainline).
1939
1938
 
1940
1939
      Status summaries are shown using status flags like A, M, etc. To see
1941
1940
      the changes explained using words like ``added`` and ``modified``
2027
2026
      You may find it useful to add the aliases below to ``bazaar.conf``::
2028
2027
 
2029
2028
        [ALIASES]
2030
 
        tip = log -r-1 -n1
 
2029
        tip = log -r-1
2031
2030
        top = log -l10 --line
2032
 
        show = log -v -p -n1 --long
 
2031
        show = log -v -p
2033
2032
 
2034
2033
      ``bzr tip`` will then show the latest revision while ``bzr top``
2035
2034
      will show the last 10 mainline revisions. To see the details of a
2036
2035
      particular revision X,  ``bzr show -rX``.
2037
2036
 
2038
 
      As many GUI tools and Web interfaces do, you may prefer viewing
2039
 
      history collapsed initially. If you are interested in looking deeper
2040
 
      into a particular merge X, use ``bzr log -n0 -rX``. If you like
2041
 
      working this way, you may wish to either:
2042
 
 
2043
 
      * change your default log format to short (or line)
2044
 
      * add this alias: log = log -n1
 
2037
      If you are interested in looking deeper into a particular merge X,
 
2038
      use ``bzr log -n0 -rX``.
2045
2039
 
2046
2040
      ``bzr log -v`` on a branch with lots of history is currently
2047
2041
      very slow. A fix for this issue is currently under development.