Linked Questions
17 questions linked to/from How do I revert an SVN commit?
1 vote
1 answer
5k views
how to revert/delete/undo last two commit to svn mainline? [duplicate]
I have committed my changes accidentally on mainline. Now i want to revert the last two changes committed to the svn server by me. It seems "revert" command will undo changes in only my working copy. ...
-2 votes
1 answer
129 views
How to undo versions checked into Subversion [duplicate]
I had a colleague that committed work to the trunk folder whilst I continued to work on a branch. Initially we thought the ideas will be used, but later realized that we would rather leave it for ...
529 votes
14 answers
760k views
How do I return to an older version of our code in Subversion?
I'm working on a project with a friend and I want to return to an older version of our code and set it to be the current. How do I do it? I'm using "anksvn" on vs08. I have the version that I want ...
167 votes
9 answers
278k views
Better way to revert to a previous SVN revision of a file?
I accidentally committed too many files to an SVN repository and changed some things I didn't mean to. (Sigh.) In order to revert them to their prior state, the best I could come up with was svn rm ...
58 votes
11 answers
32k views
Retract accidental checkin
You're using subversion and you accidentally checkin some code before it's ready. For example, I often: a) checkin some code, then b) edit a little, then c) hit up, enter to repeat the previous ...
37 votes
1 answer
79k views
How to undo a commit in SVN? [duplicate]
Possible Duplicate: Subversion: Retract Accidental Checkin How do you undo a commit of a file in SVN?
25 votes
2 answers
14k views
Delete all traces of a SVN commit
Someone in our team accidentally committed files containing a password to our repository. The password can't easily be changed. Is there a way, with full admin permissions, to delete all traces of ...
7 votes
2 answers
2k views
SVN: Revert changes of a random revision, but preserve changes of all following ones
Situation: I've got a SVN repository with lets say 100 revisions, rev. 100 being the most recent one. I've done some changes in rev. 90 which need to be reverted now. The changes in rev. 90 are self-...
1 vote
2 answers
2k views
Check points in svn
I'm using svn with my code. I want to ask, if there is any way to make checkpoints with svn? I have checkout of code on local drive. After making first part of changes I see that everything is OK. ...
1 vote
1 answer
907 views
How to make specific revision a HEAD in SVN?
I have a revision 58092, I want to make it HEAD revision. I have 4 commits in trunk folder after 58092 revision. I tried svn merge -r 58092:HEAD but I am getting error svn: E205001: Try 'svn help ...
0 votes
1 answer
364 views
SVN revert commit on command line and on Netbeans SVN not producing a svn diff file
I try to merge 2 branches from a SVN repository with a working copy on Ubuntu 14.04. I checked out my repository with SVN command line 1.8.8. I use also Netbeans 8.0.2 as IDE to program my project and ...
0 votes
1 answer
393 views
SVN problem, reverting and updating branch to trunk
I'm using SVN and I have a branch which was created a week ago from the trunk, I am having problems with some of the files I've changed, I used meld to check for differences, however now I'm in the ...
1 vote
3 answers
277 views
How to undo subversion misuse?
I am being asked to troubleshoot an issue caused by incorrect use of subversion (as far as I can tell). Here's the history, which has been marred by some time passing, user confusion, etc. but is ...
0 votes
1 answer
244 views
svn - Revert to an old commit on a different branch
I am working on a project which use svn. I checkout the latest version of it in a directory (using svn checkout http://url /path/to/dest). I've done some modification, so I svn add the modified files, ...
1 vote
1 answer
140 views
svn revert a commit that happened more than a few commits back
So I'm looking around and not seeing my specific example. Hopefully this makes sense- I'm looking for a way to delete changes that occurred in a file but in one commit and leave the changes that ...