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

commercial bzr hosting, with trac?

I am looking for bzr hosting for a closed-source project. I need wiki, bug tracking and web code overview, preferably trac. What would you suggest? Most commercial hostings don't have bzr, which I like; would I be better off switching to git then?
eudoxos
  • 18,545
  • 10
  • 61
  • 110
0
votes
1 answer

Maintaining several versions of a software in bzr

I'm a single developer of a project. I have a central bazaar repo for the project code: C:\Dev\MyProjRepo>bzr info Shared repository (format: 2a) Location: shared repository: . The repo contains a trunk directory C:\Dev\MyProjRepo>cd…
Boris Gorelik
  • 29,945
  • 39
  • 128
  • 170
0
votes
1 answer

bazaar auto tag

I want to use the automatic_tag_name hook to automatic create tag name without the need of manually typing I tried to write it like it : automatic_tag_name(branch name,10)= "GIL" Is it the correct syntax? (i found iittle information on it in the…
Gil.I
  • 895
  • 12
  • 23
0
votes
1 answer

Default diff in bazaar gui

I'm using bzr latest version (2.4.1.1) with QBZR. My default diff is defined as exteranl software (beyond compare). When i press "diff" in commit window , the external software will run. but when i press on the "diff" option under modified files ,…
Gil.I
  • 895
  • 12
  • 23
0
votes
1 answer

How does Bazaar handle file renaming?

I was curious to know more about how different version control systems track renaming files in a repository, especially in the case of a merge. On this question, comparing Git, SVN and Mercurial's strategies for file renaming, someone posted this…
Lou
  • 2,200
  • 2
  • 33
  • 66
0
votes
1 answer

bazaar merge questions2

in my previous question on how to avoid merging specific files i received an answer see Bazaar merge questions the solution is running a resolve command that takes the .THIS files for specific files that i dont want to merge. (like *.hex,…
Gil.I
  • 895
  • 12
  • 23
0
votes
1 answer

bazaar 2.4 external merge tool

i installed the latest stable bzr version and gladly discover the external merge feature. but i cant get it to work i'm using bcompare as my tool , and no matter what i do , when i try to resolve conflicts i choose bcompare and it always state…
Gil.I
  • 895
  • 12
  • 23
0
votes
1 answer

How can i check out only parts of the repository in bazaar?

In Subversion I can checkout a sub-tree of the repository. Can I do something similar with bazaar?
Mnementh
  • 50,487
  • 48
  • 148
  • 202
0
votes
1 answer

Push batches of changes to main branch in Bazaar dotted notation

I'm a DVCS newbie using Bazaar. I made a dev branch of the main repo and made many small commits. After I did a bzr push, the main line has sequential revision numbers (10,11,12,13) of all my small changes. How can I make it use dotted notation so…
projectshave
  • 3,771
  • 5
  • 23
  • 24
0
votes
1 answer

Best approach bzr on deploy server

I have online web applications running at VPS. I want to add BZR or SVN, now some questions: Currently i run BZR over SSH, which requires some manual actions over terminal. Would a SVN-server power up my remote possibilites w/o need for ssh…
Teson
  • 6,644
  • 8
  • 46
  • 69
0
votes
0 answers

openerp-server 5.0 start error - bzr error

Actually when I launch the openerp-server 5.0 I'm getting following error and I have no clue why it is happening. Maybe after a system update? bzr: error: not a branch: "/usr/lib/python2.5/site-packages/openerp-server/". I have looked everywhere on…
0
votes
1 answer

howto configure rights on webserver for successful bzr repository

I'm trying to get a better workflow with bzr between deploy server and local development machine. Web server running as www-user and bzr-login with local account, wdev. at server groups are setup, www-user: www-user,wdev and vice versa. For…
Teson
  • 6,644
  • 8
  • 46
  • 69
0
votes
1 answer

Branch project not need type password in Bazaar

In server1, I branch 1 project version control which belong to server2. The command like: $ bzr branch "sftp://[USERNAME]:[PASSWORD]@[HOST]/PATH/OF/PROJECT" The command execute and require password to execute continue (although I have already put…
trankinhly
  • 57
  • 1
  • 1
  • 5
0
votes
1 answer

Enable Bazaar plugin operation for a specific branch (not for any branch)

How can I write a post_commit (like) plugin that is executed only when a specific branch is commited?. Right now I have written a plugin in "~/.bazaar/plugins/" directory, but the problem is that the plugin is executing when any branch in the…
fdaines
  • 1,216
  • 10
  • 12
0
votes
1 answer

Refactoring a project to get stable and trunk branches using bazaar

I'm relatively new to VCS and especially Bazaar so I started my project without using it, using a structure like this +project_root +scripts +bin # Binaries for easy testing +dev # Sources…
Evpok
  • 4,273
  • 3
  • 34
  • 46