Run command in project root
1. Create a patch
svn diff > mypatch.diff
2. apply a patch
download patch
patch -p0 -i fix_path.diff
3. reverse patch
patch -p0 -R -i fix_path.diff
4. How to revert svn commit:
The following two commands will do the trick
svn merge -r 101:100 http://svn.example.com/repos/calc/trunk
svn ci
5. SVN Blamesvn blame svn://repositoy/filename
No comments:
Post a Comment