Is there a way to remove the test folders and files that I have committed to a Google Code branch?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
to delete the file, and, then, use
to push the deletion to the server — but note that will not delete anything from the SVN history : the way SVN works is to keep a trace of everything, which means permanently deleting something is not “allowed“.
If you want to completly remove a file from the repository’s history, it’s a lot harder, and will require you to be admin of the repository — which you are not, on google code.
See this entry of the Subversion’s FAQ, about that : How do I completely remove a file from the repository’s history?