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.
- Host: GitHub
- URL: https://github.com/remarkablemark/gitploy
- Owner: remarkablemark
- License: mit
- Created: 2017-12-05T02:48:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-18T05:01:57.000Z (over 8 years ago)
- Last Synced: 2025-10-07T23:45:38.536Z (9 months ago)
- Topics: branch, cli, deploy, git, gitploy, javascript, npm, npm-package
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/gitploy
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# gitploy
[](https://nodei.co/npm/gitploy/)
[](https://www.npmjs.com/package/gitploy)
[](https://travis-ci.org/remarkablemark/gitploy)
[](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)