Skip to content

Instantly share code, notes, and snippets.

@luceos
Created March 14, 2012 15:29
Show Gist options
  • Save luceos/2037271 to your computer and use it in GitHub Desktop.
Save luceos/2037271 to your computer and use it in GitHub Desktop.
Most used svn commands
# 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