An open API service indexing awesome lists of open source software.

https://github.com/remarkablemark/gitploy

🚀 Deploy a directory to a remote Git branch.
https://github.com/remarkablemark/gitploy

branch cli deploy git gitploy javascript npm npm-package

Last synced: 2 months ago
JSON representation

🚀 Deploy a directory to a remote Git branch.

Awesome Lists containing this project

README

        

# gitploy

[![NPM](https://nodei.co/npm/gitploy.png)](https://nodei.co/npm/gitploy/)

[![NPM version](https://img.shields.io/npm/v/gitploy.svg)](https://www.npmjs.com/package/gitploy)
[![Build Status](https://travis-ci.org/remarkablemark/gitploy.svg?branch=master)](https://travis-ci.org/remarkablemark/gitploy)
[![Coverage Status](https://coveralls.io/repos/github/remarkablemark/gitploy/badge.svg?branch=master)](https://coveralls.io/github/remarkablemark/gitploy?branch=master)

CLI that deploys directory to remote Git branch:
```
gitploy
```

## Installation

[NPM](https://www.npmjs.com/package/gitploy):
```sh
# global
npm install --global gitploy

# local
npm install gitploy
```

[Yarn](https://yarn.fyi/gitploy):
```sh
# global
yarn global add gitploy

# local
yarn add gitploy
```

## Usage

If `gitploy` is installed globally:
```sh
gitploy directory branch
```

If `gitploy` is installed locally:
```sh
# with npx
npx gitploy directory branch

# with binary
node_modules/.bin/gitploy directory branch # $(npm bin)/gitploy directory branch
```

## Testing

```sh
$ npm test
$ npm run lint:fix
```

## License

[MIT](https://github.com/remarkablemark/gitploy/blob/master/LICENSE)