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
10
votes
2 answers

Remove unknown 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…
Benjamin Oakes
  • 12,262
  • 12
  • 65
  • 83
10
votes
3 answers

bzr: Restoring a deleted file after some commits with bazaar

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…
Ayman Khamouma
  • 976
  • 10
  • 24
9
votes
3 answers

Is it possible and how "Giving credit for a change" for Mercurial/Git as in Bazaar?

Bazaar support adding meta data to commit to record who the actual author of a change is vs. the person who commits the change: $ bzr commit --author "Jane Rey " \ --author "John Doe " After…
gavenkoa
  • 45,285
  • 19
  • 251
  • 303
9
votes
3 answers

merge-base analog for Mercurial and bzr (to find common ancestors as possible for a merge)?

Git have merge-base command that show common ancestors of two or more branches. What analog for Mercurial and bzr?
gavenkoa
  • 45,285
  • 19
  • 251
  • 303
9
votes
2 answers

Git GUI like Bzr Explorer but for Git?

What GUI's are there for GIT that are like Bazaar Explorer? Preferably for Linux. (source: ubuntugeek.com) Would be great to include or link to screenshots in the answers. If you could do each app as one answer, they could be individually voted…
Luke Stanley
  • 1,274
  • 1
  • 16
  • 32
9
votes
2 answers

Submit bug fixes on launchpad through patches or merge proposals?

I'm new to Launchpad and Bazaar, and I'm trying to figure out what the best way is to submit bug fixes. I'm using some reasonably popular open-source software that's hosted on Launchpad, but it's not very stable. I've created my own branch of the…
Don Kirkby
  • 53,582
  • 27
  • 205
  • 286
8
votes
3 answers

Getting to know internals of Mercurial, Bazaar etc?

I understand that reading the source code is an option, given that these systems are open source, but I am looking for something on the lines of Scott Chacon's excellent writeup on Git Internals. What Scott's writeup provides is a brief hands on…
Tahir Akhtar
  • 11,385
  • 7
  • 42
  • 69
8
votes
3 answers

How to move bugfixes across branches in DVCS?

If we discover bug in some branche we fix it (check New release on picture). But also we interesting in moving this fix to Old release and Main development branch: a-->b-->c (Old release) | A-->B-->C-->D (Main release) …
gavenkoa
  • 45,285
  • 19
  • 251
  • 303
8
votes
3 answers

Which DVCS work best with Subversion repositories

Subversion works great when we have access to central repository, but sometimes two or more developers work at client where they do not have connection to central repository. I am looking for DVCS that can help us where off-line. It…
Michał Niklas
  • 53,067
  • 18
  • 70
  • 114
8
votes
3 answers

Can I edit the message of an older revision in Bazaar?

How can I edit an older revision's message to more correctly describe its changes?
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
8
votes
1 answer

Tracking a bzr repository as a Git submodule

I have a repository on GitHub which depends on two projects which are developed in Bazaar. Currently I just download and unpack sources, but it would be nice if I could actually keep their history. Is there a simple solution for this?
Alexey Romanov
  • 167,066
  • 35
  • 309
  • 487
8
votes
3 answers

How can I delete unversioned files in Bazaar?

How can I remove all unversioned files from a Bazaar workspace? I'm looking to do the equivalent of hg purge --all or git clean -fd.
Benjamin Pollack
  • 27,594
  • 16
  • 81
  • 105
8
votes
3 answers

GUI for bazaar, equivalent of gitk

What is a maintained GUI for bzr, perhaps something like gitk for git?
Adrian Panasiuk
  • 7,249
  • 5
  • 33
  • 54
8
votes
4 answers

How get local root path in svn?

Mercuril, Git and Bazaar has a way to get path root: git rev-parse --show-toplevel hg root bzr root How print the local root path in subversion? Update Example: > svn checkout https://example.com/svn/foo ~/foo --username fabiocerqueira > cd…
fabiocerqueira
  • 762
  • 4
  • 12
8
votes
1 answer

Manage Keys with Puppet for puppet-vcsrepo

I'm setting up some server configuration in my company and we have some internal repositories that run over ssh through bzr that I need to get. I wanted to use puppet-vcsrepo to pull these in and I saw that it has a way we can use a keyfile to get…
Allen
  • 794
  • 1
  • 6
  • 19
1 2
3
37 38