An open API service indexing awesome lists of open source software.

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

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!"
```