简化git的命令,配置别名
1、git status --> git st
git config --global alias.st status
2、git checkout ---> git ck
git config --global alias.ck checkout
3、git commit ---> git co
git config --global alias.co commit
4、git branch ---> git br
git config --global alias.br branch
5、git pull --> git pl
git config --global alias.pl pull
6、git push --> git ps
git config --global alias.ps push