The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
11 views

Using bzr with SFTP repository on Windows/Cygwin

Note: I'm not sure if this belongs on ServerFault or StackOverflow I'm currently working on a project which has an SFTP-only bzr repository. All works fine using my Linux machine, but when using ...
2
votes
1answer
117 views

How can I share a live BZR repository with multiple users?

I'm not sure how best to ask this question. Over several years I've developed my way into a corner and need to figure some things out. I almost certainly haven't been following best practices up until ...
1
vote
1answer
80 views

Bazaar: check out specific subfolders

How can I check out only certain subfolders from a branch in Bazaar? Example: Given the branch consisting of: /myapp /myapp/doc /myapp/bin /my /myapp/bunch-o-crap how do I create a versioned ...
-1
votes
1answer
20 views

bazaar ignoring files [closed]

I am trying to set up a centralised workflow using bzr as VCS with multiple developers. My problem is now, that all of the developers have to push via ssh to a centralised repo which also serves a the ...
1
vote
1answer
298 views

Configuring Bazaar repository on Linux

I already figured I can run the server by running (assuming repository is in /var/bzr): bzr server --directory=/var/bzr But now a couple of questions arises: This doesn't solve a problem of ...
1
vote
1answer
139 views

How do I specify the port to connect to Launchpad code? [closed]

My server uses a non-standard SSH port (not 22) for connections and now I am trying to grab some code from Launchpad and it keeps erroring out because it's trying to connect to the server with my SSH ...
0
votes
1answer
69 views

bzr not installing against newer python installed on debian

I have a debian 6.0.2.1 machine with default python 2.6. I compiled and installed python 2.7 on it and validated that 'python' executes 2.7 and not the older 2.6.6. Now, I am trying to install bzr ...
1
vote
1answer
74 views

bzr security, how to prevent push overwrite

How can I set the file permissions of a bzr repository to allow somebody to push to the branch, but not be allowed to overwrite it? That is, currently a user can completely overwrite the branch by ...
4
votes
2answers
390 views

Using etckeeper - protection and other questions

Following the suggestion made Putting /etc under source control I have installed ETCKEEPER. It seems pretty good but I have some questions. Is the any way off putting the command you do into the ...
14
votes
3answers
424 views

Putting /etc under source control

I would like to put my /etc directory iunder source control using bazaar. Are there any gotchas in doing this. It seems safer to do it user an ordinary user rather than root - might there a be a ...
0
votes
1answer
174 views

Bazaar only ssh, is bzr_ssh_path_limiter secure? or should I use sftp?

I would like to allow some users to read/write Bazaar repositories on a server using ssh. I read about using bzr_ssh_path_limiter (with restricted ssh keys) which is a nice tool and seems to do the ...
1
vote
0answers
260 views

Using Bazaar (BZR) on AFP or SMB mounted server not wroking

Has anyone been able to get BZR working on a mounted AFT or SMB mounted share? I've tried both (The AFP volume is actually coming off an Xserver.) and neither work. I have BZR 2.0.0 and am running ...
1
vote
2answers
97 views

Expand bzr branch to include parent folder

I have the following directory structure: Documents ----Incoming ----Originals ----Processed ----Working Originally I thought I only wanted to track Working, so I made a bzr repo ...