/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 doc/en/user-guide/using_aliases.txt

  • Committer: Breezy landing bot
  • Author(s): Colin Watson
  • Date: 2020-11-16 21:47:08 UTC
  • mfrom: (7521.1.1 remove-lp-workaround)
  • Revision ID: breezy.the.bot@gmail.com-20201116214708-jos209mgxi41oy15
Remove breezy.git workaround for bazaar.launchpad.net.

Merged from https://code.launchpad.net/~cjwatson/brz/remove-lp-workaround/+merge/393710

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
----------------
12
12
 
13
13
Command aliases can be defined in the ``[ALIASES]`` section of your
14
 
``bazaar.conf`` file. Aliases start with the alias name, then an
 
14
``breezy.conf`` file. Aliases start with the alias name, then an
15
15
equal sign, then a command fragment.  Here's an example ALIASES section::
16
16
 
17
17
    [ALIASES]
34
34
 
35
35
The aliases defined above would be used like so: ::
36
36
 
37
 
   % bzr recentlog
38
 
   % bzr ll
39
 
   % bzr commit
40
 
   % bzr diff
 
37
   % brz recentlog
 
38
   % brz ll
 
39
   % brz commit
 
40
   % brz diff
41
41
 
42
42
Rules for aliases
43
43
-----------------
57
57
   ``lastlog`` alias and referring to it with a ``ll`` alias will not work.
58
58
   This includes aliases that override standard commands.
59
59
 
60
 
 * Giving the ``--no-aliases`` option to the bzr command will tell it to ignore aliases
61
 
   for that run. For example, running ``bzr --no-aliases commit`` will perform a
 
60
 * Giving the ``--no-aliases`` option to the brz command will tell it to ignore aliases
 
61
   for that run. For example, running ``brz --no-aliases commit`` will perform a
62
62
   standard commit instead, not do a ``commit --strict``.
63
63