https://github.com/chassis/supercharger
Base content for WordPress work.
https://github.com/chassis/supercharger
Last synced: about 1 year ago
JSON representation
Base content for WordPress work.
- Host: GitHub
- URL: https://github.com/chassis/supercharger
- Owner: Chassis
- Created: 2013-08-21T10:05:25.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2015-04-20T00:04:20.000Z (about 11 years ago)
- Last Synced: 2025-04-01T05:02:17.508Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 325 KB
- Stars: 12
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Supercharger
This is the base repository for `content` used in common WordPress projects.
## Prerequisites
This setup works well with [Chassis](https://github.com/Chassis/Chassis).
## Using
```bash
# Clone this repo
git clone --recursive --origin upstream git@github.com:Chassis/Supercharger.git content
# If you forget --recursive:
# git submodule update --init
cd content
# Add your actual origin
git remote add origin git@github.com:yourorganisation/yourproject.git
# Push for the first time, and set it as default
git push -u origin master
```
## Updating
```bash
# Pull and rebase (in case you have project-specific commits)
git pull --rebase upstream
# Update submodules (included plugins and themes)
git submodule update --init
```