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

Bazaar: I deleted the trunk directory. Can I make another or delete the project so I can start over?

I've been trying to set up Bazaar for a project I'm doing in WAMP. I followed the tutorial here and initialized it as C:/Bazaar/MyProject, and this made a trunk directory. I can't remember exactly what I did, but I switched around a bunch of files…
user460847
  • 1,578
  • 6
  • 25
  • 43
0
votes
1 answer

Is there a way to make a Python 2.7 script that utilizes the bzrlib toolbox Python 3 compatable? Since bzrlib is not supported in Python 3

I know the general idea of how to make a Python 2.7 script compatible with Python 3, but how would I go about making it compatible when it uses the imported bzrlib toolbox modules that are not supported by Python 3? I am importing: from…
0
votes
1 answer

Error when trying to print out an iterator over (revision_id, depth, revno, end_of_merge) tuples

If I enter the code: b = Branch.open('directory containing repository') r1 = 1010 #input revision number r2 = r1-5 #last revision number that I want to sort to r1 = b.dotted_revno_to_revision_id((r1,), _cache_reverse=False) #revision ids of r1 and…
0
votes
1 answer

Is there a bzrlib function that will return all of the dotted revnos if given a start and end revision number?

I would like to somehow return every single revno and dotted revno between two revision numbers. If I made the input 1010..1000 how could I get all of the revision numbers inbetween back? If there was a branch off of rev number 1005 and each of…
0
votes
2 answers

What Bzr function can I use to return the Branch location if given the repository and revision # / revision ID?

If you have a repository and you open it up from your command line with the bzr qlog there is a section for each revision number that returns branch: trunk or branch: xyz If you use the bzr log in the command line there is a section for each…
0
votes
1 answer

Is there a way to return the bzr function (log.show_log) output as a script automatically so I can re.search through it?

There may be a better module for this in the bzrlib in general but I have not been able to find it. I would like to be able to return the output of the bzrlib function: log.show_log() as a script so that I could then use the python re.search…
0
votes
1 answer

How do you use '_find_parent_ids_of_revisions' function from the bzrlib toolbox?

Okay so when I try to use this code calling it from the linux command line: import bzrlib from bzrlib.branch import Branch from bzrlib import log from bzrlib import repository import sys import argparse parser =…
0
votes
1 answer

Is there a bzrlib function that will (given a repository to look in) output a revision's parents?

I am new to Python and Linux and I have been tasked with a project that will utilize the bzrlib toolbox written in python. The task is as follows. "Create a Python function which accepts the file system path to a local Bazaar (bzr) project and…
0
votes
1 answer

Find current working revision number in bzr after revert -rN

How can I tell which revision number I am currently compiling/linking (is there a "canonical" name for this revno?), in a bzr repo on which I have performed bzr revert -rN? I remember some time ago finding a python script that obtained this info,…
0
votes
1 answer

bzr could not complete pull, now files are missing

I bzr pulled from a repo. Some of the new files (related to a TeX documentation) in the repo apparently could not be placed in the corresponding local dir since there was some kind of lock. I had TeXStudio open, I am not sure if it locked a…
0
votes
1 answer

Does breezy fully replace bzr, in msys2

The title tells it all: Does breezy fully replace bzr, at least in msys2? E.g., by aliasing. I found little info on this: https://github.com/NixOS/nixpkgs/issues/80740
0
votes
1 answer

bzr: Ignore attributes when committing / pulling

I have one system with msys2, and another system with Ubuntu. Files in Unix have the executable attribute. Files in msys2 (NTFS based) do not have the executable attribute (although msys2 "fakes" it by looking for the shebang in the first line of…
0
votes
1 answer

How can I see what files changed for each commit in bazaar?

In git, I can use git log --stat to see which files changed in a commit. How can I do that in bzr? $ git log --stat commit dbdc98ccc1ce12a31a0bf29173b4990ccbff98 Author: Me Date: Thu Jan 29 19:03:10 2011 -0800 Add snipMate…
idbrii
  • 10,975
  • 5
  • 66
  • 107
0
votes
2 answers

Exporting the Bazaar log to a printable format?

I have a thesis project that requires a project log to be submitted along with my final paper. As part of that log I'd like to include the Bazaar revision log and all the messages that it contains but I'll need to have them in a printable format. I…
Paul Beesley
  • 767
  • 2
  • 10
  • 22
0
votes
1 answer

bzr not being able to use the right python version in msys2

I am using Msys2 from PortableApps under Win10. I cannot run bzr. I am adding below the output of a few command that illustrate the issue, and provide information that can guide the answer: $ bzr File…