svn - Revert a specific revision and commit to a new one -
i use tortoise svn client.
i need update few files old revision, take changes update creates , commit new revision. wanna revert revision in repository.
i know can creating new working copy, using compare-merge tool to apply working copy's changes main one, commiting. i'd rather unique working copy. better if use command svn move
make change diretly in subversion.
i think trying reverse-merge
.
for example if latest code state revision 42
, can this:
svn merge -r head:42 .
and commit in usual way.
Comments
Post a Comment