SVN Remove Added File From Repository and Keep Local File – Subversion
This is quick SVN (Subversion) tip, howto remove added file from SVN repository without deleting file from local filesystem.
[inttf_post_ad1]
Remove File From SVN Repository and Keep Local File
svn delete --keep-local path/to/file.example
Real example:
svn delete --keep-local css/test.css
[inttf_post_ad2]
Real world usage example
Adding a whole directory add a file that was not intended to SVN reads, but should be retained locally.
svn add css/
A ...