#Git Auto Deployment Git duto deployment using POST deploy hooks that are offered by GitHub and BitBucket.
- create a directory for deployment control site
mkdir /var/www/deploy
cd /var/www/deploy
- clone this repo
git clone [email protected]:lkwdwrd/git-deploy.git .
- setup apache/nginx/other web-server site (ex. deploy.some.site) to /var/www/deploy
- fill deploy config with your repos
$repos = array(
'prism-code-highlighting' => array(
'branch' => 'master',
'path' => '/home/usr/example/wpcopilot.net/wp-content/plugins/prism-code-highlighting/'
),
'another-plugin' => array(
'branch' => 'deploy',
'remote' => 'bbremote',
'path' => '/home/usr/example/wpcopilot.net/wp-content/plugins/another-plugin/'
)
);
- setup GitHub/Bitbucket POST hooks
- GitHub (https://help.github.com/articles/post-receive-hooks) to http://deploy.some.site/github.php
- Bitbucket (https://confluence.atlassian.com/display/BITBUCKET/POST+Service+Management) to http://deploy.some.site/bitbucket.php
- create local ssh key
ssh-keygen -t rsa -f ~/.ssh/id_rsa -C 'Bitbucket deploy'
- add public key as Deploy Key to your repo
More: https://confluence.atlassian.com/pages/viewpage.action?pageId=271943168
- commit and push