标签:
git config --global user.name "sherry"
git config --global user.email "sherry@126.com"
git config --global alias.st status
git config --global alias.ci commit
这样配置只对当前用户有效,如果想要全局,使用 system代替global
git config --global color.ui true
标签:
原文地址:http://www.cnblogs.com/sherrykid/p/5946889.html