一、 全局用户名和邮箱配置
配置全局用户名和邮箱:
git config –-global user.name yourName(如weChat)git config –-global user.email youEmail(如weChat@foxmail.com)
查询已配置的全局用户名和邮箱:
git config user.name git config user.emailgit config --list --global
添加全局用户名和邮箱:
git config --global --add user.name yourName(如weChat)git config --global --add user.email youEmail(如weChat@foxmail.com)
修改全局用户名和邮箱:
git config --global user.name yourName(如weChat)git config --global user.email youEmail(如weChat@foxmail.com)
删除全局用户名和邮箱:
git config --global --unset user.name yourName(如weChat)git config --global --unset user.email youEmail(如weChat@foxmail.com)
二、 查看git文档
查看Git文档的两种方式 :
git config –-help git help config
三、 给Git子命令配置别名
checkout别名:
git config --global alias.co checkout
branch别名:
git config --global alias.br branch
status别名:
git config --global alias.st status
commit别名:
git config --global alias.ci commit
给带参数"log --oneline"别名:
git config --global alias.lol "log --oneline"
三、其他常用命令
设置大小写敏感:
git config core.ignorecase false
未完待续...