I am working on a localhost for working WordPress using git (based on the publication of Mark Jaquith Wordpress Local Dev). My file structure looks like this:
local.dev
- .git
- index.php
- .htaccess
- -config.php
- local-config.php (ignored)
- content / topics /
- content / plugins /
- contents / upload / (ignored)
- core / (wordpress core)
What I want to do is grab the last wordpress from github and put it in the kernel / so that the update process looks like
rm -rf wordpress
svn export http:// core.svn.wordpress.org/trunk/ wordpress
git add --all wordpress
git commit -m 'Upgrade WordPress' wordpress
git push origin master
BUT I get damn time figuring out how to put Wordpress in my own directory without
- using svn
- use git to insert the local.dev file and move the files to the kernel / manually.
What am I missing?
thank
source
share