撤消(反向合并)Subversion中的更改/版本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了撤消(反向合并)Subversion中的更改/版本相关的知识,希望对你有一定的参考价值。
[See also: http://snipplr.com/view/12048]Oops, didn't mean to commit that? Undo it easily:
# svn merge -r num_of_rejected_version:num_of_version_to_revert_to pathname svn merge -r 100:91 ./foo.txt # commit it $ svn commit ./foo.txt -m "Undoing changes from r100; reverting to r91."
以上是关于撤消(反向合并)Subversion中的更改/版本的主要内容,如果未能解决你的问题,请参考以下文章