Is there a way to delete an entire remote shared repository?

Asked by Jeff Wepman

As part of learning Bazaar, I created a remote shared repository that I would like to delete. I used the following command:
bzr init-repo --no-trees bzr+ssh://myserver/srv/bzr/test/

Can I simply delete the entire directory /srv/bzr/test/ and its contents on the server (myserver)? Is there anything else I need to do?

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Edit question
Assignee:
No assignee Edit question
Solved by:
John A Meinel
Solved:
Last query:
Last reply:
Revision history for this message
Best John A Meinel (jameinel) said :
#1

On 12/30/2011 7:10 PM, Jeff Wepman wrote:
> New question #183329 on Bazaar:
> https://answers.launchpad.net/bzr/+question/183329
>
> As part of learning Bazaar, I created a remote shared repository that I would like to delete. I used the following command:
> bzr init-repo --no-trees bzr+ssh://myserver/srv/bzr/test/
>
> Can I simply delete the entire directory /srv/bzr/test/ and its contents on the server (myserver)? Is there anything else I need to do?
>

rm -rf /srv/bzr/test should be just fine.

John
=:->

Revision history for this message
Jeff Wepman (jwepman) said :
#2

Thanks John A Meinel, that solved my question.