Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docs:drupal:upgrading_using_git [2014/02/03 12:55] – created billh | docs:drupal:upgrading_using_git [2016/08/05 15:59] (current) – billh | ||
---|---|---|---|
Line 2: | Line 2: | ||
< | < | ||
+ | |||
+ | ===== running update.php ===== | ||
+ | Several places below reference running update.php. | ||
+ | $update_free_access = FALSE; | ||
+ | |||
+ | change to: | ||
+ | |||
+ | $update_free_access = TRUE; | ||
+ | </ | ||
===== Initial prep on dev machine ===== | ===== Initial prep on dev machine ===== | ||
Line 12: | Line 21: | ||
* follow [[#Initial prep on dev machine]] above | * follow [[#Initial prep on dev machine]] above | ||
* log into the administration pages on your dev machine so your session is set up | * log into the administration pages on your dev machine so your session is set up | ||
+ | * get the most recent changes from drupal core< | ||
+ | git fetch drupal | ||
+ | </ | ||
* on a clean master branch (master should be your version of the core, including any changes you had to make for this site, such as .htaccess file changes), determine which version of drupal you want to upgrade to, then merge the appropriate commit, typically by entering the tag which should match the version< | * on a clean master branch (master should be your version of the core, including any changes you had to make for this site, such as .htaccess file changes), determine which version of drupal you want to upgrade to, then merge the appropriate commit, typically by entering the tag which should match the version< | ||
git merge 7.26 | git merge 7.26 |