Pagine

Monday 15 May 2017

How to revert a commint with svn

Yuo can revert one a more commits with the following command:
 svn merge -r <current_version>:<target_version> <folder>
After that you can commit the revert.

Example:

 svn merge -r 305:298 .
 svn commit -m "revert..."

No comments:

Post a Comment