/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/help_topics.py

  • Committer: Aaron Bentley
  • Date: 2007-04-02 17:18:11 UTC
  • mfrom: (2392 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2393.
  • Revision ID: abentley@panoramicfeedback.com-20070402171811-bz7y2b2h1m1k4n7x
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
branch, which could be slow if a network connection is involved. Also, as you
191
191
don't have a local branch, then you cannot commit locally.
192
192
 
193
 
Lightwieght checkouts work best when you have fast reliable access to the
 
193
Lightweight checkouts work best when you have fast reliable access to the
194
194
master branch. This means that if the master branch is on the same disk or LAN
195
195
a lightweight checkout will be faster than a heavyweight one for any commands
196
196
that modify the revision history (as only one copy branch needs to be updated).
199
199
then there wont be a noticeable difference.
200
200
 
201
201
Another possible use for a checkout is to use it with a treeless repository
202
 
containing your branches, where you maintain only only one working tree by
 
202
containing your branches, where you maintain only one working tree by
203
203
switching the master branch that the checkout points to when you want to 
204
204
work on a different branch.
205
205
 
206
206
Obviously to commit on a checkout you need to be able to write to the master
207
 
branch. This means that the master branch must be accessable over a writeable
 
207
branch. This means that the master branch must be accessible over a writeable
208
208
protocol , such as sftp://, and that you have write permissions at the other
209
209
end. Checkouts also work on the local file system, so that all that matters is
210
210
file permissions.