Docs/Git/git基础.md
2023-05-23 13:52:29 +08:00

16 lines
No EOL
331 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 配置
```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
```
##