cyborg
cyborg

Reputation: 10139

Remove File from Repository without deleting local copy

How do I do this in Subclipse:

svn rm --keep-local file

Upvotes: 5

Views: 2339

Answers (1)

Mark Phippard
Mark Phippard

Reputation: 10419

This option is not exposed in Subclipse. So you have to stash the file somewhere and then delete it and commit it and put it back locally.

Upvotes: 11

Related Questions