Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dilumn/git-plan
Execute batch of git commands by a single bash command
https://github.com/dilumn/git-plan
gem git ruby
Last synced: 18 days ago
JSON representation
Execute batch of git commands by a single bash command
- Host: GitHub
- URL: https://github.com/dilumn/git-plan
- Owner: dilumn
- License: mit
- Created: 2016-11-10T16:17:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-05T18:16:53.000Z (almost 4 years ago)
- Last Synced: 2024-04-26T07:45:23.296Z (7 months ago)
- Topics: gem, git, ruby
- Language: Ruby
- Homepage: http://dilumn.github.io/ruby/2016/12/25/gitplan-ruby-gem/
- Size: 37.1 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Git-Plan [![Gem Version](https://img.shields.io/gem/v/git-plan.svg)][gem] [![Build Status](https://travis-ci.org/dilumn/git-plan.svg?branch=master)](https://travis-ci.org/dilumn/git-plan)
[gem]: https://rubygems.org/gems/git-plan
`git-plan` is a Ruby gem to execute set of git commands at once. If you have set of git commands that you everyday run while developing, you can set an alias for the set & execute from only one command.
## Dependencies
First, make sure you have Ruby installed.**On a Mac**, open `/Applications/Utilities/Terminal.app` and type:
ruby -v
If the output looks something like this, you're in good shape:
ruby 2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15]
If the output looks more like this, you need to [install Ruby][ruby]:
[ruby]: https://www.ruby-lang.org/en/downloads/ruby: command not found
**On Linux**, for Debian-based systems, open a terminal and type:
sudo apt-get install ruby-dev
or for Red Hat-based distros like Fedora and CentOS, type:
sudo yum install ruby-devel
(if necessary, adapt for your package manager)
**On Windows**, you can install Ruby with [RubyInstaller][].
[rubyinstaller]: http://rubyinstaller.org/downloads/## Installation
Once you've verified that Ruby is installed:gem install git-plan
## Usage
###Before execute set of git commands from a single command, configure the commands with an alias by,
plan add ALIASNAME "GIT COMMAND, GIT COMMAND2, GIT COMMAND3, GIT COMMAND4 #"
Eg:
plan add eg1 "git status, git log"
plan add eg2 "git status, git commit -m "#", git push origin #"
Use # symbol if you want to use a dynamic word inside the command(Eg: branch name)
###To run configured set of commands,
plan r ALIASNAME "VARIABLE1, VARIABLE2"
Eg:
plan r eg1
plan r eg2 "HERE IS THE COMMIT MESSAGE, master"
###To see the command set before executing,
plan inspect ALIASNAME "VARIABLE1, VARIABLE2"
Eg:
plan inspect eg1
plan inspect eg2 "HERE IS THE COMMIT MESSAGE, master"
###To see all the commands configured,
plan showall
###Help
plan help
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/dilumn/git-plan. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).