How can I delete a folder under Google Code SVN?

4.6k Views Asked by At

enter image description here

example:I want delete friendsmap.

3

There are 3 best solutions below

0
On BEST ANSWER

Use svn to checkout the entire source tree, then svn rm to remove the directory from the working set, then commit.

Better yet, you can use svn rm URL -m "Deleting that folder 'friendsmap' I don't like" and provide the url of that folder, if you want to do it quicker. (from svn rm help: "Each item specified by a URL is deleted from the repository via an immediate commit.")

1
On

Delete the folder locally with svn delete and commit.

1
On

Use TortoiseSVN repo-browser and from there delete the folder you want. If you already have TortoiseSVN it should be faster.