/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/mini-tutorial/index.txt

  • Committer: Jelmer Vernooij
  • Date: 2017-07-23 22:06:41 UTC
  • mfrom: (6738 trunk)
  • mto: This revision was merged to the branch mainline in revision 6739.
  • Revision ID: jelmer@jelmer.uk-20170723220641-69eczax9bmv8d6kk
Merge trunk, address review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
  Location:
71
71
    shared repository: sample
72
72
  $ brz init sample/trunk
73
 
  $ cd sample/trunk
74
73
  Created a repository tree (format: 2a)                                         
75
74
  Using shared repository: /home/john/sample/
76
75
 
84
83
and save it.  Then we'll "add" the file, which tells brz we want it to
85
84
track changes::
86
85
 
87
 
  brz add test1.txt
 
86
  $ cd sample/trunk
 
87
  # create the file test1.txt now
 
88
  $ brz add test1.txt
 
89
  adding test1.txt
88
90
 
89
91
and then commit, which saves a snapshot of all versioned files::
90
92
 
91
 
  brz commit -m "Added first line of text"
 
93
  $ brz commit -m "Added first line of text"
 
94
  added test1.txt
 
95
  Committed revision 1.
92
96
 
93
97
 
94
98
Making changes to your files