~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/ja/user-guide/reusing_a_checkout.txt

  • Committer: Vincent Ladeuil
  • Date: 2011-05-26 20:30:53 UTC
  • mfrom: (5920 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5924.
  • Revision ID: v.ladeuil+lp@free.fr-20110526203053-hbjn6yuzwg03wnuv
Merge from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 
61
61
  bzr init-repo --no-trees PROJECT
62
62
  cd PROJECT
63
 
  bzr branch sftp://centralhost/srv/bzr/PROJECT/trunk
 
63
  bzr branch bzr+ssh://centralhost/srv/bzr/PROJECT/trunk
64
64
  bzr checkout --lightweight trunk my-sandbox
65
65
  cd my-sandbox
66
66
  (hack away)
71
71
応じてそれらの間で切り替えることができます。例です::
72
72
 
73
73
  (my-sandboxの中にいることを前提とする)
74
 
  bzr branch sftp://centralhost/srv/bzr/PROJECT/PROJECT-1.0 ../PROJECT-1.0
 
74
  bzr branch bzr+ssh://centralhost/srv/bzr/PROJECT/PROJECT-1.0 ../PROJECT-1.0
75
75
  bzr switch ../PROJECT-1.0
76
76
  (fix bug in 1.0)
77
77
  bzr commit -m "blah, blah blah"