tripal / t4d8

This is a temporary repository for Drupal 9 upgrade for Tripal v4. It is meant to house issues related to the upgrade.
GNU General Public License v2.0
1 stars 10 forks source link

Moving Tripal 4 back into tripal/tripal repo #308

Open laceysanderson opened 1 year ago

laceysanderson commented 1 year ago

This has been started! 🎉

I have copied tripal/t4d8:9.x-4.x to tripal/tripal:4.x using the following process:

git clone https://github.com/tripal/tripal.git
cd tripal
git remote add t4d8 https://github.com/tripal/t4d8.git
git remote -v
     origin     https://github.com/tripal/tripal.git (fetch)
     origin     https://github.com/tripal/tripal.git (push)
     t4d8       https://github.com/tripal/t4d8.git (fetch)
     t4d8       https://github.com/tripal/t4d8.git (push)
git fetch t4d8
git checkout -b 4.x t4d8/9.x-4.x
     Branch '4.x' set up to track remote branch '9.x-4.x' from 't4d8'.
     Switched to a new branch '4.x'
git push origin 4.x

Updating tripal/tripal:4.x to match tripal/t4d8:9.x-4.x

We will want to periodically update tripal/tripal:4.x to match tripal/t4d8:9.x-4.x throughout the month until the alpha1 release. This can be done as follows:

git clone https://github.com/tripal/tripal.git
cd tripal
git checkout 4.x
git remote add t4d8 https://github.com/tripal/t4d8.git
git merge t4d8/9.x-4.x
laceysanderson commented 1 year ago

Updated the 4.x branch in tripal/tripal up to f3d32bfbb8142facaa68e1991812661f7a64d68c as of today. We will make the release at tripal/tripal, not here!

spficklin commented 1 year ago

wow