git-deploy-directory
v1.0.2
Published
Deploy a directory to a git branch. You can use the configuration file to deploy easily.Useful to deploy to GitHub Pages.
Downloads
2
Maintainers
Readme
English|简体中文
git-deploy-directory
Deploy a directory to a git branch. You can use the configuration file to deploy easily.Useful to deploy to GitHub Pages.
Installation
$ npm install -D git-deploy-directory
or
$ yarn add -D git-deploy-directory
Usage
// init
$ git deploy init //Initialize the configuration file
Configuration file
{
"type": "git",
"repo": "https://github.com/webkong/xxxx.git", // git repo
"branch": "docs", // git branch
"dir": "build" // You are going to deploy directory
}
// deploy
$ git deploy push