~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/en/tutorials/tutorial.txt

(vila) Forbid more operations on ReadonlyTransportDecorator (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
These revisions have other uses as well. For example, one can comment
51
51
revisions to record what the recent set of changes meant by providing an
52
52
optional log message. Real life log messages include things like "Fixed
53
 
the web template to close the table" and "Added sftp suppport. Fixes #595"
 
53
the web template to close the table" and "Added SFTP suppport. Fixes #595"
54
54
        
55
55
We keep these logs so that if later there is some sort of problem with
56
 
sftp, we can figure out when the problem probably happened.
 
56
SFTP, we can figure out when the problem probably happened.
57
57
 
58
58
How DVCS is different
59
59
=====================
209
209
 
210
210
You'll usually refer to branches on your computer's filesystem just by
211
211
giving the name of the directory containing the branch.  bzr also supports
212
 
accessing branches over http and sftp, for example::
 
212
accessing branches over SSH, HTTP and SFTP, amongst other things::
213
213
 
 
214
    % bzr log bzr+ssh://bazaar.launchpad.net/~bzr-pqm/bzr/bzr.dev/
214
215
    % bzr log http://bazaar.launchpad.net/~bzr-pqm/bzr/bzr.dev/
215
216
    % bzr log sftp://bazaar.launchpad.net/~bzr-pqm/bzr/bzr.dev/
216
217
 
608
609
 
609
610
  ::
610
611
 
611
 
    % bzr push sftp://servername.com/path/to/directory
 
612
    % bzr push bzr+ssh://servername.com/path/to/directory
612
613
 
613
614
  (The destination directory must already exist unless the
614
615
  ``--create-prefix`` option is used.)