1.配置用户信息
git config --global user.name "Your Name Comes Here" git config --global user.email "you@yourdomain.example.com"
2.配置编辑器使用vim
git config --global core.editor vim
3.配置commit提交模板
git config --global commit.template ~/.git-commit-template.txt
4.配置命令别名
git config --global alias.st status git config --global alias.ck checkout git config --global alias.br branch git config --global alias.cf config git config --global alias.fc fetch
简洁易懂 收藏了