~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Alexander Belchenko
  • Date: 2012-03-29 08:34:13 UTC
  • mto: (6015.44.14 2.4)
  • mto: This revision was merged to the branch mainline in revision 6513.
  • Revision ID: bialix@ukr.net-20120329083413-d4bqqdtfn2yrxp4f
change st_dev, st_ino, st_uid, st_gid from int members to properties.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
Let's suppose we want to store a new project under Bazaar.  First, we'll
58
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.
 
59
project.  We can then have multiple branch directories under here, and
 
60
they'll all store the committed history in the repository.
65
61
 
66
62
::
67
63
 
75
71
  Using shared repository: /home/john/sample/
76
72
 
77
73
 
78
 
Adding files
79
 
============
80
 
 
81
 
Now that we have the trunk, we need to move to that directory and
82
 
create some example files for the first version of that project.  Create
83
 
a file ``test1.txt`` using a text editor (like emacs, nano, or notepad),
84
 
and save it.  Then we'll "add" the file, which tells bzr we want it to
85
 
track changes::
86
 
 
87
 
  bzr add test1.txt
88
 
 
89
 
and then commit, which saves a snapshot of all versioned files::
90
 
 
91
 
  bzr commit -m "Added first line of text"
92
 
 
93
 
 
94
74
Making changes to your files
95
75
============================
96
76
 
97
 
 
98
77
Let's change a file and commit that change to your branch.
99
78
 
100
79
Edit ``test1.txt`` in your favourite editor, then use ``bzr add`` to tell bzr