Questions tagged [bazaar]

Bazaar is a free distributed version control system (DVCS).

Bazaar is a free distributed version control system that helps you track project history over time and to collaborate easily with others. Whether you're a single developer, a co-located team or a community of developers scattered across the world, Bazaar scales and adapts to meet your needs. Part of the GNU Project, Bazaar is free software sponsored by Canonical.

Please report bugs to the bug tracker instead of posting them here on StackOverflow.

559 questions
5
votes
2 answers

Migrate bazaar to git with commit-properties to link bugs fixed

We were using bazaar-vcs for some years but decided to migrate to git because of some long standing annoying bugs and stopped development of bzr. While using bazaar, we extensively used the "bug tracker metadata" feature of bazaar…
David Roth
  • 677
  • 4
  • 14
5
votes
3 answers

Pushing from Bazaar to Github

I develop code in Bazaar and want to publish it on Github. What is the best way to achieve this? It is OK if the solution only provides a way to push just one branch in the Bazaar repository to Github.
Thomas Bach
  • 157
  • 1
  • 8
5
votes
2 answers

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…
Dave
  • 6,184
  • 8
  • 26
  • 28
4
votes
1 answer

Bazaar: bzrlib equivalent of "bzr info"

I'm trying to write a simple script that trawls through a list of directories, checks if they are bzr version-controlled, and then tells me what their status is - ie, how many files have been modified, added etc. I've done this with the bzrlib…
Dave
  • 6,184
  • 8
  • 26
  • 28
4
votes
1 answer

bazaar shared repository vs co-located branches vs stacked branches

I need to create bazaar workspace for 4 developers. Each developer will work on its local computer and will have branch from its local branch to a network location that will be updated each commit (with the help of auto-mirror plugin). In addition ,…
Gil.I
  • 895
  • 12
  • 23
4
votes
2 answers

Bazaar: how to show history of changes to a file?

Hey I am using bazaar for my code, I wanna show the history of changes to a specific file, instead of showing changes to the whole bazaar repo. How could I do it?
perfwill
  • 273
  • 2
  • 13
4
votes
1 answer

How to put bzr revid into manifest's Android:versionName

I build my Android apps with Jenkins on a Linux Ubuntu server and uses Bazaar as SCM. I'd like to automatically append the bazaar revision id of the project to the value of Android:versionName in my manifest file. I use ant to build and I have the…
jmc34
  • 810
  • 3
  • 10
  • 22
4
votes
4 answers

Can I commit a large file with bazaar, or is there a better approach to versioning a database dump?

Bazaar limits the file size that it can commit based on the available virtual memory (according to an open bug). I would like to put a database (as mysqldump text file) under version control. The database is 3 GB and I am working on a server with…
David LeBauer
  • 31,011
  • 31
  • 115
  • 189
4
votes
3 answers

Migrating a Bazaar repo to Git: path not in branch error

I am trying to convert this Bazaar repo to Git. bzr branch lp:onboard cd onboard git init bzr fast-export --plain . | git fast-import But I get this error: 22:10:43 Calculating the revisions to include ... 22:10:43 Starting export of 2952 revisions…
Alex P.
  • 3,697
  • 9
  • 45
  • 110
4
votes
2 answers

bzr/launchpad vs. hg/Bitbucket

Very soon we are going to start on open-source (py+qt) project which is supposed to be multi-platform (we're using FreeBSD as native platform) and we're not sure which DVCS/hosting to use. In the past we were using darcs for very long time, but…
gour
  • 967
  • 9
  • 22
4
votes
3 answers

How to display bazaar version number in a latex document?

I am using bazaar as a version control system for my research. I have many latex documents. I want to display the version number in all the .dvi files under bazaar.
4
votes
6 answers

How do I export the Bazaar history of a subfolder

I'm coding a framework along with a project which uses this framework. The project is a Bazaar repository, with the framework in a subfolder below the project. I want to give the framework a Bazaar repository of its own. How do I do it?
Jrgns
  • 24,699
  • 18
  • 71
  • 77
4
votes
2 answers

How can I work on a bzr/hg repository with XCode 4?

I have a Cocoa project managed in a bzr repository, and so far I used bzr just from the command line. But now that XCode 4 natively supports git, I wonder if there's a way to work on it using the nice GUI feature of XCode 4. Any idea is greatly…
Yuji
  • 34,103
  • 3
  • 70
  • 88
4
votes
5 answers

Is it worth the effort to create pretty revision history in a DVCS?

I used to go back and edit my Mercurial commits to try to create a pretty history. I might have put two unrelated things into one commit, or I might have made several commits that were better understood as a single commit, but eventually it seemed…
joeforker
  • 40,459
  • 37
  • 151
  • 246
4
votes
1 answer

Can I bridge between a local mercurial repos and a remote bazaar repos?

I'm looking for the mercurial+bazaar equivalent of hg-git. I intend to use this for occasional cooperation to avoid learning the quirks and tricks surrounding YAVCS: I'd prefer to do use one client for as many operations as possible and thus avoid…
Eamon Nerbonne
  • 47,023
  • 20
  • 101
  • 166