bazaar

How to remove a revision from a bazaar repository?

Is it possible to completely remove a revision from a bazaar repository? I'm asking this because someone just committed a full database dump. ...

Recommendation for code hosting of personal projects.

I tired my hands on bazaar(launchpad), for the reason that i can host my project at launchpad, and bazaar (my local machine) would be tightly integrated with launchpad. I have posted my question at launchpad forum, and have not got any answer. Anyways... So i was thinking about shifting it from there to some other site. I dont know why,...

Merge two checkouts in bazaar

I'm just starting out with bazaar, and I've found that the checkout feature is the most useful for the way I work - namely I can c/o from a "master copy", do some development and then commit my changes in the new directory. This then updates the "master copy". But what if I'm working on (eg) two projects, changing different portions of...

Bazaar offline + branches

I have a Bazaar repository on Host A with multiple branches. This is my main repository. Until now, I have been doing checkouts on my other machines and committing directly to the main repository. However, now I am consolidating all my work to my laptop and multiple VMs. I need to be working offline regularly. In particular, I need to c...

How do I keep all my bazaar branches in multiple physical locations?

I've recently started working on a project that uses bazaar. I'm attempting to find a bazaar workflow I like, and being a regular git user I can't avoid using git as a reference point. In git, all my branches are stored in the one directory. If a branch lasts longer than a working day, I "git push " to keep a copy on the server. Keepin...

Is it possible to do a partial clone/branch with either bazaar, mercurial or git?

Suppose I have a project in source control with a lot of subdirectories, many of which I don't need at the moment. I would like to create a working copy containing only some of the entire tree, which still maintaining the ability to make changes, commit them, and push them back up. Is this possible and if so, how can I do it? I'm stil...

Bazaar Eclipse or External Merge/Conflicts Tool

Are there any good tools for merging/resolving conflicts for Bazaar + Eclipse? I wish Bazaar was integrated with Eclipse the same way Subversion is. ...

Browse bazaar (or CVS/SVN/Git) repository with GUI?

Hi, Is there a nice, open-source, free way to browse a bazaar (or other source control) repository? What I had in mind is a wikipedia-history-like browsing, where I can watch and compare any two versions of the code. EDIT: I strongly prefer Ubuntu tools. Thanks, Udi ...

How to use a VCS behind a HTTP proxy?

How can I use a version control system behind a authenticating HTTP proxy. Note that I said "a VCS" , so it can be SVN, CVS , BAZAAR ... I've tried several SVN clients -- they do not work. It looks like BZR has an option for that , but I've seen no public mention of it. Help. ...

Convert Bazaar repo to SVN

Hi, I have written some python scripts that take advantage of pysvn to analyze a project. I would like to run these on a project that is now in a bazaar repo so I was wondering how I could get a copy of the bazaar repo on my machine and then translate it to a svn standard so pysvn can use it. I found some documentation on going SVN to B...

Free private Bazaar online source host

Apologies if this is a duplicate question. I am looking for a free private online Bazaar source host. Does anybody know of any? I had a quick look and it seems there are lots of Git, Mercurial, and SVN options, but no Bazaar? EDIT: Just to clarify, when I say "private" I mean in the sense that you get your own private repository where ...

How do you check out a subfolder from a bazaar repository?

Is there a way to checkout a single subfolder from a bazaar repository? In one of my bazaar repositories, the top level hierarchy is documents sql_schemas www I'd like to be able to just checkout www into public_html on a demo webserver, but I don't see how to do that without doing a checkout in a working directory and then sy...

replay svn repo to bazaar

This post asks how to convert from bazaar to svn. I need to do the opposite. I need to extract all the commit history from a svn repo and "replay" it on a bazaar repo. I will then drop the svn development and continue on bazaar. Any hints ? Edit: Thanks for the answer. I ended up doing as follows: 1) Performing synchronization of the...

How to list versioned files in git?

I would like to list the versioned files in the root directory of a git repository. To do the same thing in bazaar, you run: bzr ls --versioned --non-recursive How do I do this in git? ...

Bazaar, Mercurial or other for single user version control?

Which version control system would you recommend for: single user looking for simple, easy to use generally small simple projects working on windows usually coding python no server Use would be more finding old code than complicated branching situations. From other similar posts, Bazaar and Mercurial seem the best distributed versio...

bazaar ignore file

what is the equivalent of the .hgignore mercurial file in bazaar ...

How do I get Bzr to run an arbitrary command on commit

I need the ability to run an arbitrary command when I try and commit to a bazaar branch. This command should return 0 on success, or any other code on failure, and if the command fails, bzr should refuse to commit. I want to do this for running test suites mainly, however, there are also other things (for example, checking whether ther...

unlink repository from central server in bazaar

Every time I commit with bazaar, it contacts my remote repository (the one I got the code from). I want to commit locally, because the development machine I'm on is offline. Of course there's the --local option, but I would like just to remove the linkage between the remote server and the repository branch. How can I do it? Related ques...

bzr: Restoring a deleted file after some commits with bazaar

Hi everybody ! I'd like to know if it is possible to restore a removed file from an older revision (a clean way to do it) I've renamed a file for some tests, than I commited all my work (and I forgot to rename the file) and did a lot of other commits... When I realised, it was too late... Regards, Ayman ...

Local branches with Bazaar?

I've been playing around with Git recently to get a grasp of distributed version control. Now I'm looking at Bazaar, but can't figure out how to make a local branch, i.e. a branch that I do not have to push to when I want to commit changes. With Git, I would do git branch branch_name or git checkout -b branch_name I can then work in ...