Created
March 14, 2012 15:29
-
-
Save luceos/2037271 to your computer and use it in GitHub Desktop.
Most used svn commands
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
# zie alle openstaande beschikbare commits | |
svnmerge.py avail -l | |
# commit een bepaalde revisie | |
svnmerge.py merge -r .xxx | |
# commit deze revisie direct terug naar de huidige branche | |
svn commit -F svn<tab> (commit message) | |
# ignore files from svn | |
svn propset svn:ignore <file> . | |
# change user of svn directories to someone else | |
find . -user <olduser> -print0 | xargs -0 chown <newuser> | |
# block a revision from available list and merges | |
svnmerge.py block -r xxx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment