how to get partial update from subversion

前端 未结 1 1781
温柔的废话
温柔的废话 2021-01-27 06:12

I\'m in the following scenario in my application\'s repository:

  • revision 7 (2 changed files, 1 added file)
  • revision 6 (4 changed files)
  • revision
1条回答
  •  再見小時候
    2021-01-27 06:35

    You can try to do this the other way around:

    • revert the changes of revision 6
    • commit
    • revert the changes of revision 5
    • commit
    • check out the Head revision

    This should bring the working copy to the state you'd like. The changes of revision 5 and 6 will be reverted in the repository, but this will anyway happen when you commit your changes.

    0 讨论(0)
提交回复
热议问题