Reverting changes in SVN
Simple pattern: svn merge -r <REV FROM>:<REV TO> <FILE_NAME> Example: svn merge -r 20682:20681 data/js/game/filename.js Of course at the end you have to commit all changes.
Simple pattern: svn merge -r <REV FROM>:<REV TO> <FILE_NAME> Example: svn merge -r 20682:20681 data/js/game/filename.js Of course at the end you have to commit all changes.
To revert changes from one file you can use: git checkout <filename> To revert changes from all changed files, do: git reset –hard HEAD