首页 > 代码库 > Git配置

Git配置

  • 配置全局用户信息

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

Git配置