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

Why bzr branch keep on being killed?

I am trying to branch the emacs trunk: $ mkdir emacs $ bzr init-repo emacs Shared repository with trees (format: 2a) Location: shared repository: emacs $ bzr branch bzr://bzr.savannah.gnu.org/emacs/trunk trunk Killed39KB 2666KB/s | Fetching…
yves Baumes
  • 8,836
  • 7
  • 45
  • 74
0
votes
1 answer

Upgrade bugzilla on local machine (3.4.x to 4.2.x)

I've installed bugzilla Win32InstallPackages https://wiki.mozilla.org/Bugzilla:Win32InstallPackages its pretty easy, just download Bugzilla-Setup-3.4.8.exe file, follow steps and keep pressing Next button. It installs everything (Apache, MySql,…
Khokhar
  • 685
  • 1
  • 9
  • 22
0
votes
1 answer

How to remove certain versions in bzr repository?

Say I have 10 versions in bzr repository, and I want to remove the last 2 versions. I tried "bzr revert -r -3", but it just revert the files to the second last version, and the following "bar log" still shows all 10 versions in the repository.
Hailiang Zhang
  • 17,604
  • 23
  • 71
  • 117
0
votes
2 answers

How to get the files only from a bzr repository?

I meant, I don't need all the ".bzr" folders under each directory (I may have hundreds of nested ".bzr" folders); I want to check out those actual files only. Thanks!
Hailiang Zhang
  • 17,604
  • 23
  • 71
  • 117
0
votes
1 answer

Can I cause a remote bazaar branch to pull from another branch?

We have a main trunk branch and various other feature and personal branches in a bazaar repostiry. We'd like to keep personal branches in sync with the main trunk but allow each developer to remotely call 'pull' on his remote branch so that the…
Harel
  • 1,989
  • 3
  • 26
  • 44
0
votes
1 answer

can bzr show which files under the current directory has been added in the repository?

I know in cornerstone, the GUI will report which files are "added/deleted/conflict" from the repository. Does bzr have commands that could do similar things? Thanks!
Hailiang Zhang
  • 17,604
  • 23
  • 71
  • 117
0
votes
1 answer

Repairing permissions for BZR

Recently there was mass chown-ing root:root on the server, so now I'm trying to repairer BZR permissions. Next error appears on committing code to master branch: Run command: bzr commit -m "[new commit msg]" Committing to:…
Goce Ribeski
  • 1,352
  • 13
  • 30
0
votes
2 answers

replay svn repo to bazaar

This post asks how to convert from bazaar to svn. I need to do the opposite. I need to extract all the commit history from a svn repo and "replay" it on a bazaar repo. I will then drop the svn development and continue on bazaar. Any hints…
Stefano Borini
  • 138,652
  • 96
  • 297
  • 431
0
votes
1 answer

Gnu Make different exit status from script and shell

Basic code: def make_check(local, master, old_revno, old_revid, future_revno, future_revid, tree_delta, future_tree): try: check_call('make check', shell=True) except CalledProcessError as e: raise BzrError(e) Result: …
Jeff Ferland
  • 17,832
  • 7
  • 46
  • 76
0
votes
1 answer

Bazaar (bzr) VCS: Copy/clone file with history? i.e. "bzr copy"?

Q: Does Bazaar yet support the ability to duplicate a file and preserve history on both the original and cloned files? A couple of years ago I was evaluating Bazaar for my company's VCS. There's a lot I really like about it, but one important factor…
Brian Lacy
  • 18,785
  • 10
  • 55
  • 73
0
votes
1 answer

What does "bzr check" do?

I recently saw the Bazaar command check, but not really sure what exactly it checks or verifies. Can anyone give me some info?
Cemre Mengü
  • 18,062
  • 27
  • 111
  • 169
0
votes
1 answer

Changing the name of the remote repo in Bazaar

I want to change the name of my checkout repo in Bazaar but I am not sure if it will create any problems if I just rename the folder. Is there any way to do this safely ?
Cemre Mengü
  • 18,062
  • 27
  • 111
  • 169
0
votes
3 answers

How to use a VCS behind a HTTP proxy?

How can I use a version control system behind a authenticating HTTP proxy. Note that I said "a VCS" , so it can be SVN, CVS , BAZAAR ... I've tried several SVN clients -- they do not work. It looks like BZR has an option for that , but I've seen no…
aviraldg
  • 9,531
  • 6
  • 41
  • 56
0
votes
1 answer

How do I supply my password to Bazaar so it can fetch my code from my remote server?

I have a codebase on a remote Linux server (in my private home directory). I am traveling and my internet connection is spotty, so I'd like to download the code locally, work on it, and then push changes to the server. Since I'm already managing the…
RexE
  • 17,085
  • 16
  • 58
  • 81
0
votes
2 answers

bzr update! Is it able to update only part of the branch?

I have a branch in local, eg. ~/project I only want to update the sub-directory ~/project/subdir1 and ignore all the other directory in ~/project. How could I do that?