Skip to content

Instantly share code, notes, and snippets.

@underhilllabs
Created June 28, 2010 16:59
Show Gist options
  • Save underhilllabs/456097 to your computer and use it in GitHub Desktop.
Save underhilllabs/456097 to your computer and use it in GitHub Desktop.
patch cvs drupal workflow
mkdir drupalhead
cd drupalhead
cvs -z9 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal checkout -d drupal-cvs drupal
#install drupal via webpage
# update HEAD
cd drupalhead/drupal-cvs/
cvs update -dP
# find interesting patch to test
wget http://drupal.org/files/issues/patch-name.patch
patch -p0 -u < patch-name.patch
# when finished testing, reverse the patch
patch -p0 -R < patch-name.patch
# or when done testing, revert to original cvs HEAD
cvs -q update -C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment