Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Edit: this answer assumes a different setup than the question describes, as the initial formulation of the question was unclear.</p> <p>The two operations you've described to not create the same result. Whether the differences will be meaningful or not depends a lot on your environment. For example, whether you're working with other developers or on your own.</p> <p>In the first case, you've got a branch with a working tree. When you <strong>push</strong> to a location that is not already a branch, you create a new branch with the same history as the initial branch.</p> <p>In your second example, it seems you are working with an existing checkout. I'm not sure what you mean about creation of a branch folder.</p> <p>Whether you decide to work with branches with working trees or with checkouts really depends on what you want to do. If you have a bunch of features of the same project which you want to keep isolated from one another, it seems to make sense to work with a checkout. In this case, the working tree is only stored once on disk, and the branches just keep track of the modifications for each feature. At some point, you will probably want to <strong>merge</strong> one or more of these branches together to combine those features back into a single branch.</p> <p>On the other hand, if you have two distinct projects, it might make sense to have two branches, each with their own working tree.</p> <p>Reading <a href="http://wiki.bazaar.canonical.com/Workflows" rel="nofollow" title="the Bazaar Workflows document">the Bazaar Workflows document</a>, <code>bzr help checkouts</code> and <code>bzr help branches</code> may help you decide which approach will work best for your situation.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload