This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //test mode | |
| svn merge --dry-run -r:73:68 http://my.repository.com/my/project/trunk | |
| //merge to previous | |
| svn merge -r:73:68 http://my.repository.com/my/project/trunk | |
| //commit the changes. | |
| svn commit -m "Reverted to revision 68." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| drush @sites php-eval 'node_access_rebuild();' -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Undo Commit: | |
| svn merge -r COMMITTED:PREV . | |
| //Revert Merge | |
| svn revert -R . | |
| //Revert to older revision: | |
| svn update -r <earlier_revision_number> |
NewerOlder