~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to doc/developers/nested-trees.txt

  • Committer: Jelmer Vernooij
  • Date: 2012-03-31 12:19:35 UTC
  • mfrom: (6445.5.1 nested-trees-spec)
  • mto: This revision was merged to the branch mainline in revision 6518.
  • Revision ID: jelmer@samba.org-20120331121935-9enylpvssslo7gmq
Merge typo fixes from Marius.

Show diffs side-by-side

added added

removed removed

Lines of Context:
377
377
 $ bzr merge -d project http://library2
378
378
 $ bzr commit project -m "Updated library2"
379
379
 $ bzr push -d project
380
 
 $ bzr revert project
 
380
 $ bzr revert -r-2 project
381
381
 $ bzr commit project -m "Reverted inappropriate changes."
382
382
 $ bzr push -d project
383
383
 
799
799
online.
800
800
 
801
801
At the moment, nested trees need to be incorporated as a whole.
802
 
Filtered views can to used to restrict the set of files and directories
 
802
Filtered views can be used to restrict the set of files and directories
803
803
logically seen. Currently though, filtered views are a lens onto a tree:
804
804
they do not delete other files and the exposed files/directories must
805
805
have the same paths as they do in the original branch. In the future,
936
936
   $ bzr ci -m "Change file"
937
937
   $ bzr uncommit
938
938
 
939
 
will first commit to the subtree, then to the top tree.  The uncommit will
 
939
will first uncommit to the subtree, then to the top tree.  The uncommit will
940
940
restore both trees to their previous state.
941
941
 
942
942
 
944
944
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
945
945
 
946
946
We will not provide special support for this initially.  We might later support
947
 
flagging some sub-trees as mirror-only something similar, but this seems like
948
 
it could be a general feture not specific to nesting.  (and it may only require
 
947
flagging some sub-trees as mirror-only or something similar, but this seems like
 
948
it could be a general feature not specific to nesting.  (and it may only require
949
949
a working tree format bump to add).
950
950
 
951
951
Comparison with other systems