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

331 B
Raw Blame History

配置

# --global全局配置所有仓库生效
# --system系统配置所有用户生效
git config --global user.name "xxxxxx"
git config --global user.email "xxxxx"
# 存储用户名密码
git config --global credential.helper store
# 查看
git config --global --i

创建

git init