My WordPress Build https://wp.davidwindham.com
windhamdavid cddc9e7fad wordpress submodule | 4 years ago | |
---|---|---|
app | 4 years ago | |
bin | 10 years ago | |
tests | 10 years ago | |
tools | 10 years ago | |
wp @ 93a5af5753 | 9 years ago | |
.editorconfig | 9 years ago | |
.gitignore | 4 years ago | |
.gitmodules | 4 years ago | |
.gitmodules.extra | 10 years ago | |
.gitmodules.remote | 10 years ago | |
.htaccess | 9 years ago | |
.jshintignore | 10 years ago | |
.jshintrc | 9 years ago | |
.travis.yml | 9 years ago | |
Gruntfile.js | 10 years ago | |
README.md | 4 years ago | |
composer.json | 10 years ago | |
composer.lock | 10 years ago | |
composer.phar | 10 years ago | |
config.yml | 10 years ago | |
index-wp-redis.php | 10 years ago | |
index.php | 10 years ago | |
multisite.xml | 10 years ago | |
npm.packages | 10 years ago | |
package.json | 9 years ago | |
phpunit.xml.dist | 10 years ago | |
theme-unit-test-data.xml | 10 years ago | |
wp-cli.local.yml | 10 years ago | |
wp-cli.yml | 10 years ago | |
wp-config-sample.php | 10 years ago | |
wp-remote-config-sample.php | 10 years ago | |
wp-tests-config-sample.php | 10 years ago |
Git'ing My WordPress Workflow,
so i'm machindependent.
ca·ve·at git·mptor: do not clone (build your own)
######Goals:
modern WordPress workflow ala develop.svn.wordpress.org & https://github.com/koop/develop
with an enviroment that's easy to replicate between machines.
######Usage
$ git clone git@github.com:windhamdavid/wp.git
$ cd wp
$ git submodule update --init --recursive
$ cp wp-config-sample.php wp-config.php
/* you know the drill */
######Built With:
Wordpress, Node.js, NPM, Grunt, Composer, Travis CI
#####ToDo:
setup tests
add rsync
have fun
#####Notes: 2020: Clean up old submodules.
# Remove the submodule entry from .git/config
git submodule deinit -f path/to/submodule
# Remove the submodule directory from the superproject's .git/modules directory
rm -rf .git/modules/path/to/submodule
# Remove the entry in .gitmodules and remove the submodule directory located at path/to/submodule
git rm -f path/to/submodule
[submodule "app/themes/_s"]
path = app/themes/_s
url = https://github.com/Automattic/_s.git
[submodule "app/plugins/vip-scanner"]
path = app/plugins/vip-scanner
url = https://github.com/Automattic/vip-scanner.git
[submodule "app/plugins/developer"]
path = app/plugins/developer
url = https://github.com/Automattic/developer.git
[submodule "app/plugins/wp-redis-cache"]
path = app/plugins/wp-redis-cache
url = https://github.com/windhamdavid/wp-redis-cache.git
[submodule "app/plugins/wp-debug-bar"]
path = app/plugins/wp-debug-bar
url = https://github.com/brandwaffle/wp-debug-bar.git
[submodule "app/plugins/debug-bar-slow-actions"]
path = app/plugins/debug-bar-slow-actions
url = https://github.com/kovshenin/debug-bar-slow-actions.git
[submodule "app/plugins/WP-API"]
path = app/plugins/WP-API
url = https://github.com/WP-API/WP-API.git