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

bzr remove to delete a file with branch having uncommited changes

I have to delete a versioned file my bzr repository using bzr remove command. bzr remove file_name it deletes the versioned file (from the file system) I cannot use bzr commit , (as the file has been deleted from the repository) bzr commit…
Mohit Ranka
  • 4,193
  • 12
  • 41
  • 41
0
votes
1 answer

Multiple ssh access types from a given user1/client to the same user2/server

I want to access from one user/client combination (say, user1@cl) to a user/server combination (say, user2@srv) via ssh, with two different types of Access: Access type #1 would be restricted to interactions with a bazaar repository. For this, I…
0
votes
1 answer

bzr: ERROR: Branch "file:///C:/FolderName/BranchName/" appears to be bound to itself. Please use `bzr unbind` to fix

Unable to use > bzr commit command in the bazaar explorer as this error occurs ... bzr: ERROR: Branch "file:///C:/FolderName/BranchName/" appears to be bound to itself. Please use `bzr unbind` to fix. Tried using bzr unbind…
Pooja R S
  • 83
  • 1
  • 8
0
votes
1 answer

Bazaar pre-commit hook with parameter

I wrote a pre-commit hook for bazaar which checks some syntax issues in our code. Something similar to: http://bazaar.launchpad.net/~bialix/%2Bjunk/checkeol/annotate/head%3A/__init__.py Everything works, however, I would like to additionally add a…
pisoir
  • 192
  • 3
  • 13
0
votes
1 answer

Bazaar commands revno and version-info disagree

If you update your working tree to an earlier revision, then bzr revno reports the latest revision in the repository, not the revision of your working tree. bzr version-info however, reports the revision of your working tree. Why the difference? >…
Don Kirkby
  • 53,582
  • 27
  • 205
  • 286
0
votes
2 answers

version control with minimum hassle

I'm looking for a program, that is capable to monitor file deletions/creation/renames and issues appropriate version control commands automatically. Using bazaar and subversion. Is there any?
fithu
  • 2,361
  • 5
  • 18
  • 23
0
votes
2 answers

Where bazaar looks for rules file?

On Bazaar documentation of its using with Subversion repositories: http://doc.bazaar.canonical.com/migration/en/foreign/bzr-on-svn-projects.html there is info in "Limited keywords support" about expansion of $Id$. Where does bazaar look for such…
Michał Niklas
  • 53,067
  • 18
  • 70
  • 114
0
votes
1 answer

Help setting up Bazaar Explorer between my VS2008 working directory and my dev web server

All I want to do is setup it up, so that after I make changes in VS2008 (local machine), I send those changes to the dev server. Also, I would like it so my other coworkers can do the same. But I don't seem to be able to get this working. Please…
dotnetN00b
  • 5,021
  • 13
  • 62
  • 95
0
votes
3 answers

How to search for code within a certain project in bazaar

How to search for code within a certain project in bazaar (e.g. say under https://launchpad.net/~play-developers)
user339108
  • 12,613
  • 33
  • 81
  • 112
0
votes
2 answers

Quantify Branch-specific changes in Bazaar

I've been working on a fork of critical component of our source tree, and I'm interested to see how many changes have been made. I originally bzr branch'd the project, but because of paralell development I have been doing a bzr merge to stay…
Kristopher Ives
  • 5,838
  • 7
  • 42
  • 67
0
votes
1 answer

bzr revno not displaying checked out revision

When I type bzr revno in the project directory, it displays for me the latest version I've received from my last bzr update rather than what I've reverted to most recently. Obviously bzr is more worried about what I've checked out, rather than the…
pdm
  • 1,027
  • 1
  • 9
  • 24
0
votes
1 answer

How to update my local version of Drupal with a patch (BZR)

I have a website running locally on Drupal 6.14 and I need to upgrade it to drupal 6.19 The website is version controlled with BZR. I know the BZR basics but I don't know how to update my repository the "correct" way. I don't want to simply…
BBJ
  • 1
0
votes
3 answers

How to create git styled patches with bzr?

In git, when we create a patch using git format-patch, it adds the commit id, author's name and author's email id along with diff of the changes in the repository. How can I create same type of patch using bzr ? Is there any inbuilt command or there…
Pranjal
  • 659
  • 1
  • 7
  • 24
0
votes
1 answer

Bazaar doesn't commit after migrating the project

Like it says: It would seem intuitive to just change it there and try again, but it's not actually editable. To get to this point, I file-copied the original project, opened it in Bazaar Explorer, saw that it found the history okay, and proceeded…
AaronD
  • 503
  • 1
  • 7
  • 23
0
votes
1 answer

bzr : Is it possible to switch between revisions offline?

I am using the "bzr update -r ${revisionNo}" command to switch between revisions. But it is slow and it seems to do network operations. Why? I have checked out the whole repo so all revisions must be in my local. Why does it connect to network then?
harsh atal
  • 411
  • 6
  • 16