配置全局用戶名和郵箱:git
git config –-global user.name yourName(如weChat) git config –-global user.email youEmail(如weChat@foxmail.com)
查詢已配置的全局用戶名和郵箱:code
git config user.name git config user.email git config --list --global
添加全局用戶名和郵箱:ci
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)
刪除全局用戶名和郵箱:it
git config --global --unset user.name yourName(如weChat) git config --global --unset user.email youEmail(如weChat@foxmail.com)
查看Git文檔的兩種方式 :email
git config –-help git help config
checkout別名:配置
git config --global alias.co checkout
branch別名:查詢
git config --global alias.br branch
status別名:mail
git config --global alias.st status
commit別名:co
git config --global alias.ci commit
給帶參數"log --oneline"別名:
git config --global alias.lol "log --oneline"
設置大小寫敏感:
git config core.ignorecase false
未完待續...