Showing posts with label SVN. Show all posts
Showing posts with label SVN. Show all posts

Thursday, March 8, 2012

SVN commands

Create a patch
svn diff > ~/fix_ugly_bug.diff

Apply a patch
patch -p0 -i ~/fix_ugly_bug.diff

Monday, November 21, 2011

Add all unversioned files to SVN

svn st | grep "^\?" | awk "{print \$2}" | xargs svn add $1