Merge pull request #138 from dmlemos/pro_status

Add git status short
This commit is contained in:
hemanth.hm 2017-02-23 15:54:30 +05:30 committed by GitHub
commit 5d9a006ef9
2 changed files with 11 additions and 1 deletions

View File

@ -159,6 +159,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
* [List references in a remote repository](#list-references-in-a-remote-repository)
* [Backup untracked files.](#backup-untracked-files)
* [List all git aliases](#list-all-git-aliases)
* [Show git status short](#show-git-status-short)
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end toc -->
@ -1099,5 +1100,10 @@ __Alternatives:__
git config -l | grep alias | cut -d '.' -f 2
```
## Show git status short
```sh
git status --short --branch
```
<!-- Dont remove or change the comment below that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
<!-- @doxie.inject end -->

View File

@ -470,4 +470,8 @@
"title": "List all git aliases",
"tip": "git config -l | grep alias | sed 's/^alias\\.//g'",
"alternatives": ["git config -l | grep alias | cut -d '.' -f 2"]
}]
},{
"title": "Show git status short",
"tip": "git status --short --branch"
}
]