~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

(gz) Fix test failure on alpha by correcting format string for
 gc_chk_sha1_record (Martin [gz])

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 SSH, a secure protocol built-in to most SSH servers.
 
12
via SFTP, 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).
20
 
  \bzr+ssh:/          Access over SSH (best remote option).
 
19
  \file://            Access using the standard filesystem (default)
21
20
  \sftp://            Access using SFTP (most SSH servers provide SFTP).
22
21
  \bzr://             Fast access using the Bazaar smart server.
23
22
  \ftp://             Access using passive FTP.
40
39
which directory.)
41
40
 
42
41
To address a path relative to your home directory on the server, use a
43
 
tilde like so: ``bzr+ssh://example.com/~/public_html`` should map to
 
42
tilde like so: ``sftp://example.com/~/public_html`` should map to
44
43
``public_html`` within your home directory.
45
44
 
46
45
.. note:: Access over HTTP or HTTPS is read-only by default.