~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/mini-tutorial/index.txt

  • Committer: Martin von Gagern
  • Date: 2011-06-01 12:53:56 UTC
  • mto: This revision was merged to the branch mainline in revision 6009.
  • Revision ID: martin.vgagern@gmx.net-20110601125356-lwozv2vecea6hxfz
Change from no_decorate to classify as name for the argument.

The command line switch remains as --no-classify, to keep backwards
compatibility.  Users are free to include --no-classify in an alias, and
still use --classify to change back.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
======================
56
56
 
57
57
Let's suppose we want to store a new project under Bazaar.  First, we'll
58
 
make a *repository directory* to hold all our work related to this
59
 
project, where developers can create branches to test development of
60
 
specific features or, more generally, modifications to the working file
61
 
set.  
62
 
 
63
 
After creating the repository, change to that directory, and create the
64
 
project's main trunk branch.
 
58
make a directory to hold all our work related to this project.  We'll make
 
59
a *repository directory*, which means that the 
65
60
 
66
61
::
67
62
 
71
66
  cd trunk
72
67
 
73
68
 
74
 
Adding files
75
 
============
76
 
 
77
 
Now that we have the trunk, we need to move to that directory and
78
 
create some example files for the first version of that project.  Create
79
 
a file ``test1.txt`` using a text editor (like emacs, nano, or notepad),
80
 
and save it.  Then we'll "add" the file, which tells bzr we want it to
81
 
track changes::
82
 
 
83
 
  bzr add test1.txt
84
 
 
85
 
and then commit, which saves a snapshot of all versioned files::
86
 
 
87
 
  bzr commit -m "Added first line of text"
88
 
 
89
 
 
90
69
Making changes to your files
91
70
============================
92
71
 
93
 
 
94
72
Let's change a file and commit that change to your branch.
95
73
 
96
74
Edit ``test1.txt`` in your favourite editor, then check what have you done::