https://github.com/calm/git-bash-party
Awesome bash helpers to make your git times good times.
https://github.com/calm/git-bash-party
Last synced: 4 months ago
JSON representation
Awesome bash helpers to make your git times good times.
- Host: GitHub
- URL: https://github.com/calm/git-bash-party
- Owner: calm
- Created: 2017-04-29T20:37:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-24T04:11:14.000Z (almost 7 years ago)
- Last Synced: 2025-04-03T03:01:48.827Z (over 1 year ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 2
- Watchers: 28
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Git Bash Party
Awesome bash helpers to make your git times good times.
## Installation
Clone this repository, and import into your pash profile
```sh
cd ~
git clone https://github.com/calm/git-bash-party.git
echo 'source ~/git-bash-party/git-bash-party.sh' >> ~/.bash_profile
source ~/.bash_profile
```
## Highlights
For the full list of commands, just read the `.sh` file. Here are [Calm’s](https://www.calm.com/) personal favorites:
### gplod
Shorthand for `git pull origin develop`. `gplom` pulls master.
### gbd
Delete a branch from local and remote
### gtd
Delete a tag from local and remote
### gcomp
Compare the diff between develop and master. Super helpful before a deploy to sanity-check what’s new.
### gdeploy
Merge develop to master, push to origin, and merge back to develop. Lifesaver.