Reputation: 5342
I have been using Subversion for a few days now and have a question...
I have a folder deep in my subversion trunk that I want to remove and replace with another folder.
I have read about this on here and tried:
The folder I want to remove now has an "X" over it as does all of the subfolders and files. But, when I go to the Subversion repository on the remote server, I still see the folder I want to remove and all of its files.
What do I have to do to get the clients to forget about this folder and the Subversion server to remove it permanently from its sub-folders?
Thanks in advance...
Upvotes: 0
Views: 683
Reputation: 171569
You need to commit
your change.
svn commit — Send changes from your working copy to the repository.
Note, there is no need to export your folder before doing this. Subversion keeps a history of all changes, so if you need to get this data, you can browse previous revisions and you can access the folder.
Upvotes: 2