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
3
votes
3 answers

ISO a version control tool that can manage files that are NOT under a directory tree marked as managed by the VC tool

Most of the version control tools that I am familiar with [*], and all of the modern tools - CVS, SVN, git, Mercurial, Bazaar - have some sort of of "marker" in the directory tree. E.g. if you want to version control file /a/b/c/file.txt, you…
Krazy Glew
  • 7,210
  • 2
  • 49
  • 62
3
votes
1 answer

Git: Merge in branch without polluting the Master history

OK so: In svn and bzr, I can branch, commit, merge, and my commit history will look like this: 41: Theodore R. Smith 2013-09-14 Jump to list by name instead of number. 40: Theodore R. Smith 2013-09-14 [merge] [m] Miscellaneous cleanups. 39.1.4:…
Theodore R. Smith
  • 21,848
  • 12
  • 65
  • 91
3
votes
3 answers

Bazaar + CruiseControl.Net

I want to setup CruiseControl.Net at my company. We currently have several .net solutions stored in a Bazaar repository and I want to use MSBuild to build each solution. This didn't seem too controversial, but I can't see an easy way of binding…
Chris Gill
  • 2,848
  • 5
  • 26
  • 31
3
votes
1 answer

How to remove a repository from Launchpad?

Specifically I have a repository setup in Launchpad. I need to remove this repository but didn't find any link to do that from launchpad website. I am wondering whether I could do it on my local branch using "bzr". Or I am missing something from the…
Hailiang Zhang
  • 17,604
  • 23
  • 71
  • 117
3
votes
1 answer

How to make Eclipse recognise a Git source tree that was a Bazaar source tree

I converted my Bazaar repo to a Git repo using fastimport. Seems to have succeeded as "git log" produces sensible output. I moved my old bzr checkout directory to another name, then cloned my git repo to the old directory name. $ mv myproj…
BrendanSimon
  • 665
  • 1
  • 9
  • 23
3
votes
1 answer

How to migrate large bzr project with many branches to git and filter history

After several years of using bazaar (and launchpad), we're planning to migrate the FEniCS project over to Git. We have a few requirements for this migration, which make it rather complex: We want to preserve history, but filter it and strip out a…
kynan
  • 13,235
  • 6
  • 79
  • 81
3
votes
1 answer

push a branch with pre-req to github

Say, from my original master, I made certain change to it and committed the change at time t1 I then pushed this to github (calling it branchA). Then I made some other change and committed it at time t2. I don't want to push this to branchA, but I…
user1508893
  • 9,223
  • 14
  • 45
  • 57
3
votes
6 answers

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

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…
Adam Matan
  • 128,757
  • 147
  • 397
  • 562
3
votes
1 answer

Can bazaar remember the password using protocol https+webdav?

For any push/pull operation on a https+webdav Bazaar repository, bzr asks for my password. Can bazaar remember the password using https+webdav without putting it in the repo URL (similarly to git)?
Martin Monperrus
  • 1,845
  • 2
  • 19
  • 28
3
votes
2 answers

Looking for easy to setup version control for website development

I'm an independent web designer/developer. Most of my work is building basic Wordpress websites but I also do a bit of custom development in PHP. I have one bigger client that I do a lot of ongoing custom development for as they are continually…
AidanCurran
  • 2,460
  • 5
  • 20
  • 24
3
votes
2 answers

Remove a parent branch in Bazaar

Given the following scenario: $ bzr init-repo foo $ bzr init foo/bar $ cd foo/bar $ echo 'some text' > a_file $ bzr add a_file $ bzr commit -m 'a commit message' $ cd .. $ bzr branch bar trunk $ bzr rmbranch bar bzr: ERROR: Branch is active. Use…
Thomas Bach
  • 157
  • 1
  • 8
3
votes
2 answers

What's the bzr equivalent to git clone --depth HEAD

I'm wondering how to do git clone --depth HEAD with BZR, because I don't need the whole branch history.
Joe Simpson
  • 2,546
  • 4
  • 30
  • 46
2
votes
2 answers

How to publish own OpenERP modules in Launchpad?

I developed a couple of modules for OpenERP and want to make them available to others. The obvious VCS choice is Launchpad (even if I feel tempted to use GitHub). I have a development environment with all these modules, but people should be able to…
Daniel Reis
  • 12,944
  • 6
  • 43
  • 71
2
votes
2 answers

How to combine repositories into a single one in Bazaar?

I have three independent Bazaar repositories. They are all related to a single project but have no overlapping files. I want to combine them into a single repository, under different sub-folders, and preserve their history. Is this possible? Note…
HRJ
  • 17,079
  • 11
  • 56
  • 80
2
votes
2 answers

Use lightweight Bzr checkout from Emacs offline

I have lightweight checkout of my Bazaar repository on a workstation and edit files in these folders with Emacs. The server is down due to a power failure at the moment. I can, of course, edit the files locally in any editor. However, when fetching…
SabreWolfy
  • 5,392
  • 11
  • 50
  • 73