diff options
author | Rob Loach <robloach@gmail.com> | 2013-12-14 16:44:56 -0500 |
---|---|---|
committer | Rob Loach <robloach@gmail.com> | 2013-12-14 16:44:56 -0500 |
commit | 6e962c62fb787a2e6581aebc8797a026dc0ce4a6 (patch) | |
tree | 074ab74d55d8555504cdb58c496d25b47e75cf24 | |
parent | 2596307917045df71d8922d7bc46bad00f5ec694 (diff) | |
download | git-deploy-6e962c62fb787a2e6581aebc8797a026dc0ce4a6.zip git-deploy-6e962c62fb787a2e6581aebc8797a026dc0ce4a6.tar.gz git-deploy-6e962c62fb787a2e6581aebc8797a026dc0ce4a6.tar.bz2 |
Update documentation0.0.1
-rw-r--r-- | LICENSE.md | 2 | ||||
-rw-r--r-- | README.md | 36 | ||||
-rw-r--r-- | composer.json | 1 |
3 files changed, 12 insertions, 27 deletions
@@ -1,7 +1,7 @@ LICENSE ======= -GitHub Pages Manager is released under the MIT License: +GitHub Pages Deploy is released under the MIT License: > Copyright (C) 2013 [Rob Loach](http://robloach.net) > @@ -1,40 +1,25 @@ # GitHub Pages Deploy -[](https://travis-ci.org/RobLoach/GitHubPagesDeploy) -[](https://coveralls.io/r/RobLoach/GitHubPagesDeploy?branch=master) -[](https://packagist.org/packages/RobLoach/GitHubPagesDeploy) -[](https://packagist.org/packages/RobLoach/GitHubPagesDeploy) - Deploys a number of repositories using the `gh-pages` branch, and keep the up to date. -## Installation -GitHub Pages Deploy can be installed with [Composer](http://getcomposer.org) -by adding it as a dependency to your project's composer.json file. +## Installation -```json -{ - "require-dev": { - "robloach/gh-pages-deploy": "*" - } -} +1. Install Composer: +``` bash +$ php -r "eval('?>'.file_get_contents('https://getcomposer.org/installer'));" ``` -Please refer to [Composer's documentation](https://github.com/composer/composer/blob/master/doc/00-intro.md#introduction) -for more detailed installation and usage instructions. - -## Usage - -1. Download GitHub Pages Deploy with Composer - +2. Use Composer to download GitHub Pages Deploy: ``` bash -$ php -r "eval('?>'.file_get_contents('https://getcomposer.org/installer'));" -$ php composer.phar create-project robloach/php-pages-deploy +$ php composer.phar create-project robloach/gh-pages-deploy ``` -2. Create a `gh-pages-deploy.json` file: +## Usage + +1. Create a `gh-pages-deploy.json` file: ``` json { "mywebsite": "https://github.com/my/website.git", @@ -42,8 +27,7 @@ $ php composer.phar create-project robloach/php-pages-deploy } ``` -3. Execute GitHub Pages Deploy - +2. Execute GitHub Pages Deploy to deploy all sites: ``` bash $ gh-pages-deploy/bin/gh-pages-deploy deploy ``` diff --git a/composer.json b/composer.json index 6ec3c88..70aa312 100644 --- a/composer.json +++ b/composer.json @@ -1,4 +1,5 @@ { + "title": "GitHub Pages Deploy", "name": "robloach/gh-pages-deploy", "type": "library", "description": "Deploys a number of repositories using the gh-pages branch.", |