1.0.0 • Published 7 years ago

send-to-git-cli v1.0.0

Weekly downloads
21
License
MIT
Repository
github
Last release
7 years ago

Node.js v6.5 or newer is required.

Via the yarn client:

$ yarn global add send-to-git-cli

Via the npm client:

$ npm install --global send-to-git-cli

Example to add the content of the folder ./some-files to git@github.com:some-org/some-repo.git on the folder public_html.

send-to-git --s "./some-files/**" --d ./public_html --r git@github.com:some-org/some-repo.git

--source, -s

Type: string Array Required

Glob or array of globs to read.

--destination, -d

Type: string Required

Relative destination path.

--remote, -r

Type: string Required

git repository url.

--branch, -b

Type: string Default: 'master'

Branch to add and push the changes.

--commit-message, -cm

Type: string Default: 'Release'

Commit message for the changes.

Feel free to dive in! Open an issue or submit PRs.

send-to-git-cli follows the Contributor Covenant Code of Conduct.

MIT