/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 doc/optional-edit.txt

  • Committer: Martin Pool
  • Date: 2005-06-27 01:36:22 UTC
  • Revision ID: mbp@sourcefrog.net-20050627013622-0d56be3e3105043e
Merge from aaron:

------------------------------------------------------------
revno: 763
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 17:30:28 -0400
message:
  Copy files in immutable stores directly.
------------------------------------------------------------
revno: 762
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 16:12:33 -0400
message:
  Fixed direct call of get_url in RemoteBranch.get_revision
------------------------------------------------------------
revno: 761
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 12:00:31 -0400
message:
  Added prefetch support to update_revisions
------------------------------------------------------------
revno: 760
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 11:57:54 -0400
message:
  Added cache support to branch and pull
------------------------------------------------------------
revno: 759
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 11:21:37 -0400
message:
  Added find_cached_branch to branch
------------------------------------------------------------
revno: 758
committer: Aaron Bentley <abentley@panoramicfeedback.com>
timestamp: Thu 2005-06-23 11:17:10 -0400
message:
  Added CachedStore type to reduce remote downloads

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
******************************
 
2
Optional explicit edit command
 
3
******************************
 
4
 
 
5
The default is for each branch to have an editable working copy, which
 
6
can be modified and committed.  However, in some cases (following RCS
 
7
and BK) people might prefer to have either a read-only working copy,
 
8
or none at all.
 
9
 
 
10
Reasons:
 
11
 
 
12
 - Branches which are never edited don't need it; removing it saves
 
13
   some time and space.  In particular this applies to branches on a
 
14
   server which are meant to be branched from or committed too, not
 
15
   edited.
 
16
 
 
17
 - Files for which there is no working copy or a read-only copy are
 
18
   known not to be edited, and this can make some operations such as
 
19
   diffing a bit simpler.
 
20
 
 
21
Since this is mostly an optimization and requires user knowledge it
 
22
perhaps should not be added.  Certainly not yet.
 
23
 
 
24
Sketch::
 
25
 
 
26
  $ bzr get --no-wc SOURCE TARGET
 
27
  $ bzr edit --remove
 
28
  $ bzr edit --read-only .
 
29
  $ bzr edit --write foo.c
 
30