/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/starting_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:
8
8
wish to put under version control, here are the commands to use::
9
9
 
10
10
  cd my-stuff
11
 
  bzr init
12
 
  bzr add
13
 
  bzr commit -m "Initial import"
 
11
  brz init
 
12
  brz add
 
13
  brz commit -m "Initial import"
14
14
 
15
 
``bzr init`` creates a ``.bzr`` directory in the top level directory
 
15
``brz init`` creates a ``.brz`` directory in the top level directory
16
16
(``my-stuff`` in the example above). Note that:
17
17
 
18
 
 * Bazaar has everything it needs in that directory - you do
 
18
 * Breezy has everything it needs in that directory - you do
19
19
   **not** need to setup a database, web server or special service
20
20
   to use it
21
21
 
22
 
 * Bazaar is polite enough to only create one ``.bzr`` in the
 
22
 * Breezy is polite enough to only create one ``.brz`` in the
23
23
   directory given, not one in every subdirectory thereof.
24
24
 
25
 
``bzr add`` then finds all the files and directories it thinks
 
25
``brz add`` then finds all the files and directories it thinks
26
26
ought to be version controlled and registers them internally.
27
 
``bzr commit`` then records a snapshot of the content of these
 
27
``brz commit`` then records a snapshot of the content of these
28
28
and records that information, together with a commit message.
29
29
 
30
30
More information on ``init``, ``add`` and ``commit`` will be provided
39
39
idea to create a repository for the project at the top level and to nest
40
40
a *main* branch within it like this::
41
41
 
42
 
  bzr init-repo my.repo
 
42
  brz init-repo my.repo
43
43
  cd my.repo
44
 
  bzr init my.main
 
44
  brz init my.main
45
45
  cd my.main
46
46
  hack, hack, hack
47
 
  bzr add
48
 
  bzr commit -m "Initial import"
 
47
  brz add
 
48
  brz commit -m "Initial import"
49
49
 
50
50
Some users prefer a name like *trunk* or *dev* to *main*. Choose
51
51
whichever name makes the most sense to you.