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
0
votes
1 answer

Check out lastest development version

What is the bzr equivalent of cd .. rm -fr widelands git clone url/to/widelands.git ? After searching for hours yesterday, how to get rid of local changes, I rage quit and did: $ cd .. $ rm -fr widelands $ LANG=C bzr branch lp:widelands # LANG…
Bodo Thiesen
  • 2,476
  • 18
  • 32
0
votes
1 answer

Bazar Repository - Concept of branches and

Hi all I am writing a repository adapter for Bzr. This is for a search engine where adapter lets me communicate to some bzr repo, check the connection, checkout or update the projects. (No commit, push or create repos) Now i dont have much…
lucky
  • 63
  • 1
  • 2
  • 9
0
votes
1 answer

What would be the equivalent in bazaar of git bundle --all?

When dealing with git repositories I use git clone --mirror ; git bundle create --all to create a backup clone of the repository in a single file. In there an equivalent way on bazaar?
0
votes
0 answers

How to delete files from VCS history?

I have an old source code repository which I would like to share publicly. However, it includes some files which I do not want to share. I would like to create a new VCS branch with these files removed entirely from its history, but would like to…
sondra.kinsey
  • 583
  • 7
  • 18
0
votes
2 answers

Can bzr ignore empty lines when comparing revisions?

I would like to set up a bzr repository that does not require me to deal with the addition or subtraction of empty lines. Is it possible to do this? Are there any potential disadvantages? My code is in R and bash.
David LeBauer
  • 31,011
  • 31
  • 115
  • 189
0
votes
1 answer

Find the bzr revno corresponding to a revision-id

I'm still trying to figure out how the revision numbering works with bzr, despite having read the understanding revision numbers bzr documentation. I have a local branch of an upstream repository. The local revision is 689, and I haven't made any…
Lorin Hochstein
  • 57,372
  • 31
  • 105
  • 141
0
votes
3 answers

What bzr version did I branch from?

I did a "bzr branch" from my team's bazaar repository and then committed some changes to my local branch. How can I determine what revision number I initially branched from?
Lorin Hochstein
  • 57,372
  • 31
  • 105
  • 141
0
votes
1 answer

bzr unable to connect to ssh host (because of python?)

Until today, I have been able to use bzr pull server:path/to/trunk, but today I get an error: Unable to connect to SSH host server; EOF during negotiation It is not clear why this error occurs, but this is the traceback from ~/.bzr.log Any ideas…
David LeBauer
  • 31,011
  • 31
  • 115
  • 189
0
votes
1 answer

replay local commits in bzr

I work with bazaar binded to the server. Our bazaar server was down, so I unbound myself with bzr unbind and committed locally with bzr commit. The server is up again so I used bzr bind and now my commits show as pending merge and my commits appear…
Dorian
  • 490
  • 2
  • 10
0
votes
0 answers

BzrEclipse plugin install not working

I have followed the BzrEclipse Installation instructions installed Eclipse 4.3 (Kepler) recommended, have 4.7 installed bzr 2.5+ required, have 2.8 Followed 'Installation - Within Eclipse 4.2 Juno' Install New Software instructions section for…
CW Holeman II
  • 4,661
  • 7
  • 41
  • 72
0
votes
2 answers

Create a bzr branch that selectively omits some commits from parent branch

Is it possible to create a branch of a bzr repository that selects omits certain changes? For example, let's say my repository is at revision 354, and I want to branch it, but I don't want to include the changes that were done in revision 247. Note…
Lorin Hochstein
  • 57,372
  • 31
  • 105
  • 141
0
votes
1 answer

Pull only one directory or pattern with bzr

I want to pull only one specific directory/file, or several directories/files which match a given pattern, from a bazaar repository. Is this possible? How? It is clear that I can pull the whole project and then keep only what I want, but this is not…
0
votes
1 answer

noob: Not able to checkout code using Bazaar explorer

So i started Bazaar explorer and set my local path to a project folder on desktop. I have an http URL in the format http://XXX.XXX.X.XX/trunk..I tried checking out the code by entering the URL in the Branch Source but I get an error saying…
Chitu
  • 1
0
votes
5 answers

How do DVCSs (DRCSs) work?

I have been hearing a lot of good things about DVCS systems, in particular about bazaar. Apart from the concept of distributed repository, I see two main advantages being touted: the merge is better automated, and the rename is handled right. Could…
user3458
0
votes
3 answers

how to fetch only recent updates from a svn repository using bzr that already imported the repo

I once did a repository fetch from google using bzr from a svn repo like this bzr svn-import http://feedparser.googlecode.com/svn/ feedparser cd feedparser bzr branch trunk mybranch cd mybranch bzr checkout now the repository svn repo (…
jspeshu
  • 1,211
  • 3
  • 12
  • 20