Last Updated: February 09, 2019
·
4.73K
· godfoca

Better output for git status

git config --global alias.st "status -sb"

This will give you a more compact status:

▸ git st
## master
 M .gitignore
A  cities.dot
?? script/

Specially useful to remember when you need to parse the output of git status :)