https://github.com/mrloop/git_scripts
Developer workflow convenience scripts
https://github.com/mrloop/git_scripts
Last synced: 11 months ago
JSON representation
Developer workflow convenience scripts
- Host: GitHub
- URL: https://github.com/mrloop/git_scripts
- Owner: mrloop
- Created: 2016-05-29T08:13:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-06-01T10:33:45.000Z (over 9 years ago)
- Last Synced: 2025-01-04T23:18:42.332Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Git Scripts
Helper scripts for managing git workflow.
## Intstallation
Add `git-cosmetic-commit` to your `$PATH` e.g.
```sh
cd /usr/local/bin && curl -L https://raw.githubusercontent.com/mrloop/git_scripts/master/git-cosmetic-commit | sudo tee git-cosmetic-commit >/dev/null; sudo chmod 755 git-cosmetic-commit
```
## git-cosmetic-commit
Creates a new commit for cosmetic changes on current feature branch or creates a new fixup commit for cosmetic changes commit on current branch.
```sh
git cosmetic-commit
```
Read the [blog post](http://blog.mrloop.com/workflow/2016/05/29/improving-workflow-in-git.html).