CLI that deploys directory to remote Git branch:
gitploy <directory> <branch>
NPM:
# global
npm install --global gitploy
# local
npm install gitployYarn:
# global
yarn global add gitploy
# local
yarn add gitployIf gitploy is installed globally:
gitploy directory branchIf gitploy is installed locally:
# with npx
npx gitploy directory branch
# with binary
node_modules/.bin/gitploy directory branch # $(npm bin)/gitploy directory branch$ npm test
$ npm run lint:fix