Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Subversion: Retract Accidental Checkin

How do you undo a commit of a file in SVN?

share|improve this question

marked as duplicate by marcog, delnan, Sander Rijken, abatishchev, Oded Dec 24 '10 at 16:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 19 down vote accepted
svn merge -r COMMITTED:PREV .

or

svn merge -c -1708 path/to/file
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.