Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gka/git-go
...for people who don't like wasting time typing git commands
https://github.com/gka/git-go
convenience danger git time-savers
Last synced: 3 months ago
JSON representation
...for people who don't like wasting time typing git commands
- Host: GitHub
- URL: https://github.com/gka/git-go
- Owner: gka
- Created: 2016-10-05T21:35:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-02T12:14:28.000Z (almost 4 years ago)
- Last Synced: 2024-10-04T13:18:17.126Z (4 months ago)
- Topics: convenience, danger, git, time-savers
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/git-go
- Size: 10.7 KB
- Stars: 21
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-go
*git-go* is a short-hand command for doing
```
git add -A
git add -u
git commit -m "SOME MESSAGE"
git pull
git push
```It is a dangerous practice, but it saves a lot of time. Also it encourages [committing early and often](http://www.databasically.com/2011/03/14/git-commit-early-commit-often/).
### Usage
It's really just `git-go COMMITMSG`. Note that you don't have to put quotes around the commit message.
```
git-go your commit message goes here
```If you intend to use quotes, you need to escape them using `\`.
```
git-go I\'m done coding
```### Installation
```
npm install -g git-go
```### Credit
This is just a nodejs port of @jashkenas' git-go Ruby script.