添加 'Git/git基础.md'

This commit is contained in:
iProbe 2023-05-23 13:52:29 +08:00
parent ab2cce88af
commit e16cf4fe48

16
Git/git基础.md Normal file
View file

@ -0,0 +1,16 @@
## 配置
```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
```
##