https://github.com/slammayjammay/git-commit-all
Add and commit all git files
https://github.com/slammayjammay/git-commit-all
babel es6 git javascript nodejs terminal
Last synced: 2 months ago
JSON representation
Add and commit all git files
- Host: GitHub
- URL: https://github.com/slammayjammay/git-commit-all
- Owner: slammayjammay
- License: mit
- Created: 2017-02-01T23:52:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-10T03:47:50.000Z (almost 9 years ago)
- Last Synced: 2025-02-26T12:43:32.307Z (over 1 year ago)
- Topics: babel, es6, git, javascript, nodejs, terminal
- Language: JavaScript
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `git-commit-all`
```sh
$ npm install -g https://github.com/slammayjammay/git-commit-all
```
# Usage
```sh
$ git-commit-all "Commit message" # Easy peasy.
```
Just a shortcut for
```sh
$ git add -A
$ git commit -m "Commit message"
```
And since `git-commit-all` takes _so long_ to type...
```sh
# In your .bash_profile
alias gall="git-commit-all"
```
```sh
$ gall "Commit everything!"
```