Is there a Bazaar equivalent of Git default branching? -


Using GIT, I can create branches without my directory structure branches. When I switch between the branches (believe that everything is committed), it will change the contents of those files that I am working to display the status of the "current" branch.

I Actually Being able to do this - it fits very well in my workflow, especially when I say, Visual Studio

But I'm a market fanboy I like that it's primarily written in Python, I like how beautiful and simple the GUI is (me), and I like it to be very cross- Is the platform.

So I wish this is possible, and my question is, can the market emulate the behavior of Git? if so, how?

I use (heavyweight) checkout in the market, so I'm not sure it's exactly for you It should be similar, but you should be able to do this with the switch command for example:

  mkdir source-repo bzr init-repo --no-trees source -repo bzr init source-repo / trunk bzr source-repo / trunk workdir cd workdir # hack hack hack bzr add bzr ci -m "some things have been completed" # Now create a branch and create working directory files Change this to change bzr switch -b my-new-branch # We are now working on the checkout of //source-repo/my-new-branch # hack hack hack buzzer ad bezr ci-m "in branch "Now go back to the trunk (there is no B because we are not making the branch) BSR switch trunk # working directory files trunk branch # hack hack hack hack hack strike bzr add bzr ci -m" change in trunk "# Merge changes to my new-branch bzr merge ./source-repo/my-new-bra Nch bzr ci -m "merged my new branch"  

You can of course use the full path for the branches, but the relative can save a lot of typing. Unfortunately, merge commands require full path.

Is this something you are looking for?


Comments