create a patch with subversion
Before the commit:
svn diff > mypatch_xx.diff
After the commit:
svn diff -r
copy the mypatch_xx.diff file at the same relative place on the other computer/directory/…
and do:
patch --dry-run -p0 -i ~/mypatch_xx.diff
to see what will be done and then
patch -p0 -i ~/mypatch_xx.diff
to do it really
to install patch: apt-get install patch
to install subversion: apt-get install subversion


