EasyAuto
Simple CLI for git and github
Installation
Add this line to your application's Gemfile:
gem 'easy-auto'
And then execute:
$ bundle
Or install it yourself as:
$ gem install easy-auto
Setup
Configure your computer for easy-auto:
$ easy-authorize
Follow the prompts, then confirm the install worked:
$ easy-setup
Usage
To create a repo on github from your current project:
$ create-repo
Follow the instructions.
Create a new branch:
$ create-branch <new-branch-name> <OPTIONAL: branch-to-track>
The new branch is made from master if no second branch name is given.
To open a pull-request:
$ pull-request
Follow the prompts.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request