Reputation: 31709
I am trying to create and remove a folder in my local working copy.
These below are my steps:
$ mkdir jander
$ svn add jander
A jander
$ svn rm jander
svn: Use --force to override this restriction
svn: 'jander' has local modifications
As you can see I'm getting that message about "use --force ...", So... am I doing something wrong? What is the correct way to create and remove a folder?
Regards,
Javi
Upvotes: 1
Views: 78
Reputation: 28755
In your case You have not committed that folder. And want to rm this recently added folder then you can remove it by using
svn revert jander
rm jander
Upvotes: 3
Reputation: 15157
Since you haven't committed it, the folder still has local modifications, and thus the error. Do the commit, then the rm, and commit the rm, and you should be good.
Upvotes: 4