File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`.
159
159
* [ List references in a remote repository] ( #list-references-in-a-remote-repository )
160
160
* [ Backup untracked files.] ( #backup-untracked-files )
161
161
* [ List all git aliases] ( #list-all-git-aliases )
162
+ * [ Show git status short] ( #show-git-status-short )
162
163
163
164
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
164
165
<!-- @doxie.inject end toc -->
@@ -1099,5 +1100,10 @@ __Alternatives:__
1099
1100
git config -l | grep alias | cut -d ' .' -f 2
1100
1101
```
1101
1102
1103
+ ## Show git status short
1104
+ ```sh
1105
+ git status --short --branch
1106
+ ```
1107
+
1102
1108
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
1103
1109
<!-- @doxie.inject end -->
Original file line number Diff line number Diff line change 470
470
"title" : " List all git aliases" ,
471
471
"tip" : " git config -l | grep alias | sed 's/^alias\\ .//g'" ,
472
472
"alternatives" : [" git config -l | grep alias | cut -d '.' -f 2" ]
473
- }]
473
+ },{
474
+ "title" : " Show git status short" ,
475
+ "tip" : " git status --short --branch"
476
+ }
477
+ ]
You can’t perform that action at this time.
0 commit comments