bazaar

Creating releases branch in nested style

I wanna have this structure: project/ # The overall repository, *and* the project's mainline branch + joe/ # Developer Joe's primary branch of development | +- feature1/ # Developer Joe's feature1 development branch | | +- broken/ # A staging branch for Joe to develop feature1 | +- feature2/ #...

Proper commands for Bazaar?

I am having some difficulty figuring out which Bazaar commands to use... Suppose I have a local branch named "test" in a folder of the same name: When I initially get the branch, I type: cd test bzr pull lp:project_name To commit local changes, I type: bzr commit -m "message" I have no trouble with those commands. Here is w...

Is there a Bazaar equivalent of Git default branching?

Using git, I can create branches conceptually, without having to branch my directory structure. When I switch between branches (assuming that everything has been committed), it will change the contents of the files that I'm working on to reflect whatever the status of the "current" branch is. I really like being able to do this - it fit...

How can I mirror a project hosted on launchpad on github?

I want to contribute actively to a project that is hosted on Launchpad. I'm much more comfortable with GitHub, and would like to continue to use it if possible. Would I be able to mirror the bzr repository on github? If it's possible, how could I set this up? ...

How to install Bazaar to a shared server via SSH?

If I have SSH access to a shared server (running centOS) and I want to install Bazaar. I do not have root access, but Python is already installed on the server, so that shouldn't be a problem. I really don't know where to begin after logging into the server. I'm assuming the first step is to copy the Bazaar application files onto the se...

Cant push changes back to Launchpad using git-bzr

I'm unable to push my changes back to a Launchpad repository using git-bzr. $ git init $ git bzr add upstream ../bzr-branch $ git bzr fetch upstream $ git checkout -b local_branch upstream Then I modify a file, README for example. $ git add README $ git commit $ git bzr push upstream And I get the following error. /usr/bin/git-bzr...

private folder in github

/source/application/controller ( visible ) /source/application/models ( visible ) /source/application/views ( visible ) /source/framework ( not visible ) can we somehow do like this at github or in any git sites ? svn ? or maybe other SCM ? ...

Where is the format of the file `.bzr.log` documented?

Where is the format of the file .bzr.log documented? ...

Wrong working directory used when tagging Maven release

When I run release:prepare on my Maven project, it fails when attempting the scm-tag phase. My Maven project uses Bazaar for its SCM. My plugin versions are maven-release-plugin 2.0 and maven-scm-plugin 1.4 [INFO] EXECUTING: cmd.exe /X /C "bzr tag myproj-pathway-0.0.2" [ERROR] Not a branch: "D:/proj/". The problem of course, is that...

Is there a way of finding out what a bazaar update would do.

Is theere a way of finding out what changes a bzr update will do without actually doing it. Specifially I would like to have a bit of warning if there is going to be a conflict. ...

Forget a certain revision from the repository (BZR)

i have a bzr repository with revision number 701 and some time ago on revision number 680 i committed some code that changes every file in the repository (i.e. a source code formatter changes every file ) now i want to have the old formatting with out missing the changes i made after revision 680 how can i forget revision number 680 the...

bzr: copy file from one branch to another unrelated branch

Is it possible to copy a file from one branch to another unrelated branch while preserving history for that file? ...

Converting a Mercurial repository to Bazaar

Is there an easy way of converting an existing Mercurial repository to Bazaar without losing any history? If I convert Mercurial to Subversion to Bazaar will I lose any history? ...

Which open source forges for bzr/bazaar ?

Hi, I'm looking for an open source forge that we can host in our lab for some private projetcs. Our favorite DVCS is bzr so this forge must support bzr repositories. While Launchpad is open source, this forge does not seem to be admin-friendly for hosting a private clone (no support, no migration script for database schema modificatio...

Determining the Bazaar version number from Python without calling bzr

I have a django (Python) project that needs to know what version its code is on in Bazaar for deployment purposes. This is a web application, so I don't want to do this because it fires off a new subprocess and that's not going to scale. import subprocess subprocess.Popen(["bzr", "revno"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)...

Migrating from bazaar to mercurial?

I have a small project which I started in bazaar, as an exercise to learn bzr. I've since decided I prefer Mecurial. How might I migrate this project to Hg? ...

Can I edit the message of an older revision in Bazaar?

How can I edit an older revision's message to more correctly describe its changes? ...

How to update my local version of Drupal with a patch (BZR)

I have a website running locally on Drupal 6.14 and I need to upgrade it to drupal 6.19 The website is version controlled with BZR. I know the BZR basics but I don't know how to update my repository the "correct" way. I don't want to simply overwrite all drupal files and commit the changes. I want to compare my old version with the new ...

How check incoming changes with Bazaar?

With Mercurial I do: $ hg in With SVN I do: $ svn log -r BASE:HEAD How do this with Bazaar? ...

how can I commit changes to a bzr branch from within emacs?

I do most development from within emacs, and I use bzr for version control. I infer that c-x v = is equivalent to bzr diff, but it is not clear to me how I can make commits from within emacs, or how various bzr commands map to emacs key bindings. Can anyone suggest the best approach or point me to a tutorial? ...