Brandon
Brandon

Reputation: 401

How to delete folder from subversion tags directory?

I have an extra folder in my subversion tags directory. The wierd part is, I dont see it when I ls in that folder since I deleted it the tags directory in my terminal. But when I look at the subversion website it is still there. What am I doing wrong?

Upvotes: 1

Views: 45

Answers (1)

Pravin
Pravin

Reputation: 371

Refer link http://svnbook.red-bean.com/en/1.8/svn.ref.svn.c.delete.html

svn delete <dir>
svn ci <dir> -m "comment"

Upvotes: 1

Related Questions