Created
June 28, 2010 16:59
-
-
Save underhilllabs/456097 to your computer and use it in GitHub Desktop.
patch cvs drupal workflow
This file contains hidden or 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
mkdir drupalhead | |
cd drupalhead | |
cvs -z9 -d:pserver:anonymous:[email protected]:/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