Basic
1 2 3 4 5 6 7 8 9 10 11 |
# Creating a patch file svn diff > ~/my.diff # Applying a patch file patch -p0 -i ~/my.diff # View Last 5 commits svn log -l5 -v # Revert to revision svn up -r 10 |
Changelist
1 |
# TODO |