标签:style blog color 使用 sp strong on div log
一、向Git证明自己的身份
在安装完Git后,第一步就是向Git说明自己的身份,通过如下两个命令证明:
git config --global user.name "myusername" #用户名 git config --global user.email "myemail" #邮箱
要查看用户,使用:
git config --list
二、给Git命令起别名:
别名用起来很简短顺手,如把git status -> git st,使用如下命令:
git config --global alias.st status
标签:style blog color 使用 sp strong on div log
原文地址:http://www.cnblogs.com/lipijin/p/4118059.html