This is the base repository for content
used in common WordPress projects.
This setup works well with Chassis.
# Clone this repo
git clone --recursive --origin upstream [email protected]:Chassis/Supercharger.git content
# If you forget --recursive:
# git submodule update --init
cd content
# Add your actual origin
git remote add origin [email protected]:yourorganisation/yourproject.git
# Push for the first time, and set it as default
git push -u origin master
# Pull and rebase (in case you have project-specific commits)
git pull --rebase upstream
# Update submodules (included plugins and themes)
git submodule update --init