~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-28 00:18:10 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-20071128001810-978qqnjpd12u4we2
change Makefile to support tutorials

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
What are aliases?
5
5
-----------------
6
6
 
7
 
Aliases are an easy way to create shortcuts for commonly-typed commands, or to set
 
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
8
9
defaults for commands.
9
10
 
10
11
Defining aliases
50
51
   ``commit --no-strict``.
51
52
 
52
53
 * Aliases can override the standard behaviour of existing commands by giving
53
 
   an alias name that is the same as the original command. For example, default
 
54
   an alias name that is the same as the orignal command. For example, default
54
55
   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
 
 
60
 
 * Giving the ``--no-aliases`` option to the bzr command will tell it to ignore aliases
 
58
   This includes aliases that override standard commands
 
59
 * Giving the ``--no-aliases`` to the bzr command will tell it to ignore aliases
61
60
   for that run. For example, running ``bzr --no-aliases commit`` will perform a
62
 
   standard commit instead, not do a ``commit --strict``.
 
61
   standard commit instead not do a ``commit --strict``.
63
62