Git常用命令 - 随时更新
Posted yanceylu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git常用命令 - 随时更新相关的知识,希望对你有一定的参考价值。
1. 配置用户信息
git config --global user.name <name> git config --global user.email <email_address>
2. 配置高亮显示
git config --global color.ui auto
使用auto的高亮配置比较省事。
3. 配置git log
git config --global log.decorate short
decorate选项设置成short,这样在commit message上会显示对应的ref name。(省略前缀refs/heads/, refs/tags/ and refs/remotes/)
4. 配置git send-email
git config --global sendemail.smtpserver <smtpserver> git config --global sendemail.confirm always git config --global sendemail.suppresscc all
confirm选项设置成每次发送总会提示确认信息。suppresscc选项设置成完全禁止auto cc,这样就不会通过检查commit message自动添加email到CC list里了。
以上是关于Git常用命令 - 随时更新的主要内容,如果未能解决你的问题,请参考以下文章