~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/using_aliases.txt

  • Committer: Ian Clatworthy
  • Date: 2007-11-30 04:28:32 UTC
  • mto: (3054.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3055.
  • Revision ID: ian.clatworthy@internode.on.net-20071130042832-6prruj0kzg3fodm8
chapter 2 tweaks

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
What are aliases?
5
5
-----------------
6
6
 
7
 
Command aliases are an easy way to customize the behaviour of Bazaar. Aliases
8
 
are an easy way to create shortcuts for commonly-typed commands, or to set
 
7
Aliases are an easy way to create shortcuts for commonly-typed commands, or to set
9
8
defaults for commands.
10
9
 
11
10
Defining aliases
53
52
 * Aliases can override the standard behaviour of existing commands by giving
54
53
   an alias name that is the same as the orignal command. For example, default
55
54
   commit is changed with ``commit=commit --strict``.
 
55
 
56
56
 * Aliases cannot refer to other aliases. In other words making a
57
57
   ``lastlog`` alias and referring to it with a ``ll`` alias will not work.
58
 
   This includes aliases that override standard commands
59
 
 * Giving the ``--no-aliases`` to the bzr command will tell it to ignore aliases
 
58
   This includes aliases that override standard commands.
 
59
 
 
60
 * Giving the ``--no-aliases`` option to the bzr command will tell it to ignore aliases
60
61
   for that run. For example, running ``bzr --no-aliases commit`` will perform a
61
 
   standard commit instead not do a ``commit --strict``.
 
62
   standard commit instead, not do a ``commit --strict``.
62
63