标签:blog conf orm nbsp 命令 style 邮箱 控制 global
git config --global user.name "Your Name" git config --global user.email "email@example.com"
因为Git是分布式版本控制系统,所以,每个机器都必须自报家门:你的名字和Email地址。你也许会担心,如果有人故意冒充别人怎么办?这个不必担心,首先我们相信大家都是善良无知的群众,其次,真的有冒充的也是有办法可查的。
注意git config
命令的--global
参数,用了这个参数,表示你这台机器上所有的Git仓库都会使用这个配置,当然也可以对某个仓库指定不同的用户名和Email地址。
git config --global color.ui true
$ git config --global alias.st status $ git config --global alias.br branch $ git config --global alias.last ‘log -1‘
标签:blog conf orm nbsp 命令 style 邮箱 控制 global
原文地址:http://www.cnblogs.com/shifu204/p/6366465.html