Subversion notes and commands ------------------------------------------------------------------------------- Clean Download svn co https://magick.imagemagick.org/subversion/ImageMagick/trunk . List Subversion repository svn ls https://magick.imagemagick.org/subversion/ImageMagick/branches/ Download repository changes svn up What files are out of date in my svn download svn status -u | grep '\*' What files need uploading (I changed) svn status -u | grep '^M' Show the 'local' changes I have made svn diff Compare my file with repository diffuse wand/mogrify.c How has the repository changed relative to my copy diffuse -R HEAD wand/mogrify.c Upload my changes svn ci wand/mogrify.c -------------------------------------------------------------------------------