Is there a way to delete an entire remote shared repository?
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:
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:
- 2011-12-30
- Last query:
- 2011-12-30
- Last reply:
- 2011-12-30
|
#1 |
On 12/30/2011 7:10 PM, Jeff Wepman wrote:
> New question #183329 on Bazaar:
> https:/
>
> 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:
>
> 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
=:->
Jeff Wepman (jwepman) said : | #2 |
Thanks John A Meinel, that solved my question.