svn - How do I remove files from Subversion? -


i trying remove files out of version control in svn. accidentally removed them file system , every time run svn status these files shown exclamation mark in front of them. how remove files when run svn status? help!

!   project/files0     //i want remove one.. !   project/files1     //i want remove one.. !   project/files2     //i want remove one.. !   project/files3     //i want remove one.. m   project/good file0 m   project/good file1 m   project/good file2 

use

svn delete 

(see http://svnbook.red-bean.com/en/1.6/svn.ref.svn.c.delete.html)

then commit.

(or use tortoise , use gui)


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -