Skip to content

Instantly share code, notes, and snippets.

@Telematica
Last active June 8, 2016 16:32
Show Gist options
  • Save Telematica/020c65fe6d48a3478a05 to your computer and use it in GitHub Desktop.
Save Telematica/020c65fe6d48a3478a05 to your computer and use it in GitHub Desktop.
SVNhandyCommands.sh
#SVN DIFF
#svn diff --diff-cmd='meld' -r4550 yourfile
#MS Windows example
svn diff --diff-cmd='C:\Program Files (x86)\Meld\Meld.exe' -r4550
#Patch
svn diff -r123:124 path/to/my_project_folder > ~/my_project_changes_123_124.patch
#Summarize Commit files
svn diff -c r47113 --summarize
#SVN Log
svn log --limit 10
svn log -l 10
svn log -r1:HEAD
svn log -l 10 -r HEAD:1
#(Subversion 1.8)
svn log --search figueroah01 -l 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment