What is the best way to roll-back a change set using Subversion?

前端 未结 8 1169
遥遥无期
遥遥无期 2021-02-07 10:13

I\'ve been using various source control systems for a while, but when it comes to reverting changes I\'m not yet an expert. Can someone help given this scenario:

Scenar

8条回答
  •  南笙
    南笙 (楼主)
    2021-02-07 10:35

    I think you need to reverse merge first between 5:4, then revert the correct file

    1. svn merge -r 5:5 http://svn.example.com/repos/calc/trunk

    2. svn revert correctfile

    you probably end up with at weird state on the 2buggy files That you can hopefully can solve manually.

提交回复
热议问题