bazaar

Can I change the language in Bazaar Explorer?

Bazaar Explorer mixes languages in its user interfaces. Part of it are in German, the other parts in English. That's why I'd like to set the language explicit to English. How can I set the language in Bazaar Explorer? Bazaar Explorer is running on an English Windows, but with German locale. ...

Remove unkown files in Bazaar

I have a bunch of unknown files in my Bazaar working tree that I no longer want. I can get a list of them using bzr stat, but I'd like an easy way to get rid of them. (I'd expect an option for bzr revert to do this, but I'm not finding one.) I can always write a tiny script to parse the output of bzr stat and rm or mv the unknowns, bu...

Are there any good desktop linux tools for viewing a bazaar branch's history?

For viewing diffs, I use the excellent Meld tool. But when it comes to looking at earlier revisions, I usually just find myself looking at the branch in Launchpad, where my code is hosted. Are there are good desktop tools for allowing me to do this? Ideally, Olive's "History Mode" should do the trick, but it just gives me errors when I t...

Trying to understand BZR repository.

I use Bazaar and I love it. Generally, I just create different branches and manage them separately. I've just found that all those branches can be put into a repository. If I understand correctly, this should save memory and increase speed as some common ancestor between branches are shared. Q1: Do I understand this right? Another thing...

Trying to understand BZR repository II.

I am wondering what different between bzr init-repo Repo and bzr init-repo Repo --no-trees. I've tried them and cannot seems to see what is the different. For both, I cannot add file directly into the repo (I have to create branch first). They seems to behave exactly the same to me. Would anyone explain me what are the differences? ED...

bzr: Detach a repository subdirectory into a new repo

Hi, I have a bzr repository called misc. Naturally, it got clogged with lots of subdirectories which now deserve a repo of their own. How do I detach a subdirectory, say misc/docs, into a new repo called doc? I have tried: bzr split misc/docs But got : bzr: ERROR: To use this feature you must upgrade your branch at file://...

[bzr] uncommit up to before merge

When I have a history -rev 100, merge -- rev 95.3 -- rev 95.2 -- rev 95.1 -rev 99 -rev 98 and I try bzr uncommit -r 95.3.. it writes an error message. How can I fix the problem? Error is bzr: ERROR: exceptions.TypeError: unsupported operand type(s) for +: 'NoneType' and 'int' Traceback (most recent call last): File "/usr/lib/p...

How to get local bzr commits to server?

lanchpad.net states that for project Emle - Electronic Mathematics Laboratory Equipment, the current focus of development is the 2.0 series This is what I have done so far: Set the launchpad.net project to import from the sourceforge.net project Emle (this actually set the launchpad.net project to mirror the sourceforge.net project ra...

What is bzr for cvs export?

With cvs one can export the files that have a specific tag and get no cvs meta data included such as with this command: cvs -z3 -d:ext:[email protected]:/cvsroot/emle export -R -r BL0123 -d emle030205_BL0123 emle What is the corresponding bzr command where the launchpad.net branch is lp:emle and the tag is BL0123? ...

Non-existent file in limbo prevents push to remote branch (Bazaar VCS)

Hi! I use Bazaar VCS to version files locally on my notebook. When im in the office I merge the changes to a repository on a windows share and also push all the files there (for backup reasons). My Problem: The last push resulted in an error, because I added a file with a very long filename (I had that problem before ... python doesn'...

How is bazaar as a version control tool?

We are planning to use bazaar as a version control tool over cvs and svn. So i don't know much about it, Where can i find a tutorial of using it? and compared to svn and cvs what extra features does it provides. And is it worth using for the application with large amount of code to manage? ...

Rapidly putting directories under bzr as remotely-stored shared repository

I've got a bunch of little projects in a bunch of different directories on a bunch of different computers. I also have a remote server that I can happily bzr+ssh to. It seems that it should be really easy to (1) put a directory under bzr control ("bzr init ; bzr add"--okay, no worries); (2) place that directory on the remote server ("b...

eclipse+bzr (Or: DVCS + IDE)

Hi, I have some projects on bzr code repositories shared with colleagues. Problem is, I really want to switch to eclipse in some projects, but I don't want to pollute the repository with the unnecessary metadata eclipse creates in its Workspaces. Any idea how to keep Eclipse's metadata outside my bzr repo? Adam ...

Mercurial Hg Clone fails on C# project with GUID

UPDATE: In trying to replicate this problem one more time to answer your questions I could not! I can only conclude that my initial setup of Mercurial was problematic and/or possibly I was trying to checkin a build that failed compilation before the checkin. Sigh! Thank you so very much for your help. I gave credit for the help on how to...

Remove files from Bazaar

I'm using Bazaar (bzr) to keep source code for a website updated, but we've ran into a problem when we remove files from version control. The files we are removing are ones we never intended to version to begin with. When this happens we use bzr rm --keep to remove the file from version control, but keep the file in the file system. Doi...

Stop Bazaar (bzr) from making .moved files

Is there a way to tell bzr not to create .moved files? I've tried the --overwrite option with a bzr pull, but it still creates the .moved files. I guess I can just make a clean-up script, but I was just wondering if I am missing something. ...

Bazaar split and & Rich Roots

I would like to make a directory of my branch into a seperate repository. bzr split <dir> looks like the coomand but I get bzr: ERROR: To use this feature you must upgrade your branch at file:///C:/blahblah/ to a format which supports rich roots. What does that mean ...

How to migrate out of designsync to git/hg/bzr/svn?

design sync uses RCE as a backend store. RCE is supposed to be the next version of RCS. Does anyone has any experience with migration of design sync or RCE to any of the newer version control system? ...

How can i read bzr repository from python script?

like getting information about changesets/comments etc. ...

I did my own web framework: now, how keep it sync with applications? must I use versions?

... and I did the first web application using it, now I'm going to create the second. In this first web application I enhanced the framework's core library with new things and promptly updated framework branch. I'm using bazaar to keep framework and web application committed. The application was in the beginning, a full branch of frame...