/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/releasing_a_project.txt

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
this command will package the last committed version into
11
11
a ``tar.gz`` archive file::
12
12
 
13
 
  bzr export ../releases/my-stuff-1.5.tar.gz
 
13
  brz export ../releases/my-stuff-1.5.tar.gz
14
14
 
15
15
The ``export`` command uses the suffix of the archive file
16
16
to work out the type of archive to create as shown below.
38
38
it's useful to define a symbolic name for a version using the ``tag``
39
39
command like this::
40
40
 
41
 
  bzr tag version-1-5
 
41
  brz tag version-1-5
42
42
 
43
43
That tag can be used later whenever a revision identifier is
44
44
required, e.g.::
45
45
 
46
 
  bzr diff -r tag:version-1-5
 
46
  brz diff -r tag:version-1-5
47
47
 
48
48
To see the list of tags defined in a branch, use the ``tags`` command.