Last active
June 8, 2016 16:32
-
-
Save Telematica/020c65fe6d48a3478a05 to your computer and use it in GitHub Desktop.
SVNhandyCommands.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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