Kuy
Kuy is a Ruby gem to simplify git feature branch workflow if you want to pull and merge your develop or master branch. Kuy assumes git is already installed.
Installation
gem install kuy
Installation with Homebrew and brew-gem
If you use zsh and MacOS, there is possibility kuy and kuymaster commands are not found.
As alternative, you can install this gem with Homebrew and brew-gem.
brew install brew-gem
brew gem install kuy
How to Use
Run kuy or kuymaster command in your git feature branch.
Suppose you have a branch named my-feature-branch and you want to pull origin/develop branch and merge into my-feature-branch.
git checkout my-feature-branch
kuy
Or if you want to pull origin/example branch and merge into my-feature-branch.
git checkout my-feature-branch
kuy example
Or if you want to pull origin/master branch and merge into my-feature-branch.
git checkout my-feature-branch
kuymaster
License
Kuy is released under the MIT License.