~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
easy. You can find installation instructions at:
26
26
 
27
27
- **GNU/Linux:** Bazaar is probably in your GNU/Linux distribution already.
28
 
- **Windows:** `installation instructions for Windows`_.
29
 
- **Mac OS X:** `installation instructions for Mac OS X`_.
 
28
- **Windows:** `installation instructions`_.
 
29
- **Mac OS X:** `install using MacPorts`_.
30
30
 
31
 
For other platforms and to install from source code, see the Download_
 
31
For other platforms and to install from source code, see the Downloads_
32
32
and Installation_ pages.
33
33
 
34
 
.. _installation instructions for Windows: http://bazaar-vcs.org/WindowsDownloads
35
 
.. _installation instructions for Mac OS X: http://bazaar-vcs.org/MacOSXBundle
36
 
.. _Download: http://bazaar-vcs.org/Download
37
 
.. _Installation: http://bazaar-vcs.org/InstallationFaq
 
34
.. _installation instructions: http://bazaar-vcs.org/WindowsDownloads
 
35
.. _install using MacPorts: http://bazaar-vcs.org/MacPorts
 
36
.. _Downloads: http://bazaar-vcs.org/Download
 
37
.. _Installation: http://bazaar-vcs.org/InstallationFAQ
38
38
 
39
39
 
40
40
Introducing yourself
103
103
Making changes to your files
104
104
============================
105
105
 
106
 
Let's change a file and commit that change to your branch.
 
106
Let's change a file and commit those changes to your branch.
107
107
 
108
108
Edit ``test1.txt`` in your favourite editor, then check what have you done::
109
109
 
116
116
 
117
117
Commit your work to the Bazaar branch::
118
118
 
119
 
  $ bzr commit -m "Added first line of text"
 
119
  $ bzr commit -m 'Added first line of text'
120
120
  Committed revision 2.
121
121
 
122
122
 
162
162
Bazaar will create a ``myproject`` directory on the remote server and
163
163
push your branch to it.
164
164
 
 
165
**Note:** to use sftp, you may need to install ``paramiko`` and
 
166
``pyCrypto``. See http://bazaar-vcs.org/InstallationFaq for details.
 
167
 
165
168
Now anyone can create their own copy of your branch by typing::
166
169
 
167
170
 $ bzr branch http://www.example.com/myproject
168
171
 
169
 
**Note:** to use sftp, you may need to install ``paramiko`` and
170
 
``pyCrypto``. See http://bazaar-vcs.org/InstallationFaq for details.
171
 
 
172
172
 
173
173
Publishing your branch with Launchpad
174
174
=====================================
225
225
the parent into your personal branch::
226
226
 
227
227
  $ bzr merge
228
 
  Merging from saved parent location: http://bazaar.launchpad.net/~bzr/bzr-gtk/trunk
 
228
  Using saved location: http://bazaar.launchpad.net/~bzr/bzr-gtk/trunk
229
229
  All changes applied successfully.
230
230
            
231
231
Check what has changed::
235
235
If you're happy with the changes, you can commit them to your personal
236
236
branch::
237
237
 
238
 
  $ bzr commit -m "Merge from main branch"
 
238
  $ bzr commit -m 'Merge from main branch'
239
239
  Committed revision 295.
240
240
 
241
241
 
254
254
Replacing ``mycode.patch``, create your merge directive::
255
255
 
256
256
 $ bzr send -o mycode.patch
257
 
 Using saved parent location: http://bazaar.launchpad.net/~bzr/bzr-gtk/trunk
 
257
 Using saved location: http://bazaar.launchpad.net/~bzr/bzr-gtk/trunk
258
258
 
259
259
You can now email the merge directive to the bzr-gtk project who, if
260
260
they choose, can use it merge your work back into the parent branch.
263
263
Learning more
264
264
=============
265
265
 
266
 
You can find out more about Bazaar in the
267
 
`Bazaar User Guide <../user-guide/index.html>`_.
 
266
You can find out more about Bazaar in the `Bazaar user guide <../../index.html>`_.
268
267
 
269
268
To learn about Bazaar on the command-line::
270
269