16 lines
No EOL
331 B
Markdown
16 lines
No EOL
331 B
Markdown
## 配置
|
||
```shell
|
||
# --global:全局配置,所有仓库生效
|
||
# --system:系统配置,所有用户生效
|
||
git config --global user.name "xxxxxx"
|
||
git config --global user.email "xxxxx"
|
||
# 存储用户名密码
|
||
git config --global credential.helper store
|
||
# 查看
|
||
git config --global --i
|
||
```
|
||
## 创建
|
||
```shell
|
||
git init
|
||
```
|
||
## |