~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/user-guide/branching_a_project.txt

  • Committer: Jelmer Vernooij
  • Date: 2011-05-10 07:46:15 UTC
  • mfrom: (5844 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5845.
  • Revision ID: jelmer@samba.org-20110510074615-eptod049ndjxc4i7
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
You may decide to make the top level directory of your branch
10
10
a network share, an approach familiar to Windows users.
11
11
Unix users might prefer access to be
12
 
via SFTP, a secure protocol built-in to most SSH servers.
 
12
via SSH, a secure protocol built-in to most SSH servers.
13
13
Bazaar is *very* flexible in this regard with support for
14
14
lots of protocols some of which are given below.
15
15
 
16
16
  ===========         ======================================================
17
17
  Prefix              Description
18
18
  ===========         ======================================================
19
 
  \file://            Access using the standard filesystem (default)
 
19
  \file://            Access using the standard filesystem (default).
 
20
  \bzr+ssh:/          Access over SSH (best remote option).
20
21
  \sftp://            Access using SFTP (most SSH servers provide SFTP).
21
22
  \bzr://             Fast access using the Bazaar smart server.
22
23
  \ftp://             Access using passive FTP.
39
40
which directory.)
40
41
 
41
42
To address a path relative to your home directory on the server, use a
42
 
tilde like so: ``sftp://example.com/~/public_html`` should map to
 
43
tilde like so: ``bzr+ssh://example.com/~/public_html`` should map to
43
44
``public_html`` within your home directory.
44
45
 
45
46
.. note:: Access over HTTP or HTTPS is read-only by default.