-
设置姓名和邮箱地址
1
2
|
git config --global user.name
"xpleaf"
git config --global user.email
"xpleaf@163.com"
|
-
提高命令输出的可读性
1
|
git config --global color.ui auto
|
1
2
3
4
5
6
|
cclyyh@leaf:~$
cat
.gitconfig
[user]
name = xpleaf
email = xpleaf@163.com
[color]
ui = auto
|
-
生成SSH Key
1
|
ssh
-keygen -t rsa -C
"xpleaf@163.com"
|
-
在GitHub上添加公钥
-
与GitHub认证
1
|
ssh
-T git@github.com
|
Git常用命令与说明 |
|
命令 |
说明 |
初始化仓库 |
|
查看仓库的状态 |
|
git add |
向暂存区中添加文件 |
git commit |
|
git log |
|