https://github.com/afeiship/rake-git
Rake task for git.
https://github.com/afeiship/rake-git
git rake task
Last synced: about 2 months ago
JSON representation
Rake task for git.
- Host: GitHub
- URL: https://github.com/afeiship/rake-git
- Owner: afeiship
- Created: 2019-03-30T15:56:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-11-13T00:14:58.000Z (over 5 years ago)
- Last Synced: 2025-10-27T22:34:07.333Z (8 months ago)
- Topics: git, rake, task
- Language: Ruby
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rake-git
> Rake task for git.
## installation
```bash
npm i -D @jswork/rake-git
```
## usage
~~~
$ rake -T
rake git:branch_create[name] # Create branch action
rake git:branch_delete[name] # Delete branch action
rake git:branch_list[name] # List branch action
rake git:branch_push[name] # Push branch action
rake git:tag_create[version] # Create tag from semver file(eg: package.json)
rake git:tag_delete[version] # Delete tag from semver file(eg: package.json)
rake git:tag_list[version] # List tag from semver file(eg: package.json)
rake git:tag_list_remote[version] # List remote tag from semver file(eg: package.json)
rake git:tag_push[version] # Push tag from semver file(eg: package.json)
rake git:tag_tagging[version] # Tagging tag from semver file(eg: package.json)
~~~