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
3
votes
1 answer

Bazaar and $Id$

Most my sources are in subversion and I use '$Id$' to add revision information to those sources. Then I can easily check what sources were used (e.g.. --version option shows that info). Now I'm going to use bazaar and I can't find such a…
Michał Niklas
  • 53,067
  • 18
  • 70
  • 114
3
votes
3 answers

DCVS + hosting for a startup commercial multiplatform phone app

I'm in lean startup mode, working on a simple phone app that will be published initially as a iThingy app and an Android app with, possibly, Blackberry and Symbian versions to follow. I'm about to go from no repository to needing a central…
Anne Gunn
  • 2,347
  • 1
  • 28
  • 42
3
votes
4 answers

What is branched in a repository?

From what I understand of subversion if you have a repo that contains multiple projects, then you can branch individual projects within that repo (see SVN Red book - Using Branches) However what I don't quite follow is what happens when you create…
Peter M
  • 7,309
  • 3
  • 50
  • 91
3
votes
1 answer

How to migrate out of designsync to git/hg/bzr/svn?

design sync uses RCE as a backend store. RCE is supposed to be the next version of RCS. Does anyone has any experience with migration of design sync or RCE to any of the newer version control system?
Vijay
  • 143
  • 1
  • 6
3
votes
1 answer

Permission denied (publickey) while download bzr branch

When I am try to downloading branch from launchpad. I am facing below Error. krishna@krishna-Studio-1435:~/Desktop$ bzr branch lp:openobject-addons Permission denied (publickey). ConnectionReset reading response for 'BzrDir.open_2.1',…
3
votes
3 answers

Trying to understand BZR repository II

I am wondering what different between bzr init-repo Repo and bzr init-repo Repo --no-trees. I've tried them and cannot seems to see what is the different. For both, I cannot add file directly into the repo (I have to create branch first). They seems…
NawaMan
  • 25,129
  • 10
  • 51
  • 77
3
votes
2 answers

How can I execute a bunch of Python commands before a script is run when using the Python interpreter?

I have a defective version of bzr which I invoked using python -m pdb $(which bzr) ... to find out what the defect is. The defect is inside a certain module and I'd like to work around the defect by executing a command right before the python binary…
0xC0000022L
  • 20,597
  • 9
  • 86
  • 152
3
votes
1 answer

Permission Denied on SSH on Bazaar

I'm new to Bazaar. I'm trying to setup my SSH Keys, but I'm always getting "Permission Denied". Here are the things I did: Open PuTTYgen Click "Generate" Move around the mouse pointer Add a passphrase "password" Click the "Save public key", and…
3
votes
3 answers

Bazaar newbie question about repository structures

I want to use Bazaar on Windows XP for web-development and related tasks. Most of the files are edited locally and then transferred via FTP to the server. Just now the repository sits on my local workstation. Later on it should be shared locally…
esc1729
  • 143
  • 7
3
votes
2 answers

Is it possible to automatically insert version number in code using bazaar?

I am currently working with a coding project using the bzr (bazaar) source code management software. I would like to include the version number in the file code of my project So that I could call the variable "VERSION" and echo out my current…
taggedzi
  • 129
  • 4
3
votes
2 answers

bzr add, but dirs remain unknown

I'm having trouble bzr adding a dir and its subdirs. If I add the dir "PSMTabBarControl2 ", then I see the following status, however bzr refuses to add certain dirs, the ones listed under "unknown". prompt> bzr st added: …
neoneye
  • 50,398
  • 25
  • 166
  • 151
3
votes
3 answers

Is there a way for Bazaar to automatically detect and apply changes made in a working directory?

Is there a way for Bazaar to be able to automatically detect changes (adds, removes, renames, etc.) made to part of the working directory and automatically apply them? I have a directory tree in my repository which is generated by another process so…
Trent
  • 13,249
  • 4
  • 39
  • 36
3
votes
3 answers

Emacs VCS interface commits only one file

When I commit changes with Emacs' built-in VCS interface (I use it with Bazaar) it commits only one file - that's open in current buffer. So when I press C-c v v, enter message and C-c C-c, it does something like bzr commit -m "my message"…
myfreeweb
  • 971
  • 1
  • 13
  • 19
3
votes
2 answers

I'm working on a project, and I want to see how it ran in its last revision. How do I do it without losing my changes?

Specifically, I'm using bzr, but tips for any VCS are welcome.
Matthew
  • 28,056
  • 26
  • 104
  • 170
3
votes
4 answers

bzr checkout vs. bzr get

I wonder what the difference is between bzr checkout ./MyProject MyProject.dev # later followed by a cd MyProject.dev bzr pull ../MyProject and bzr get ./MyProject MyProject.dev # later followed by cd MyProject.dev bzr pull As far I can tell the…
neoneye
  • 50,398
  • 25
  • 166
  • 151