331 B
331 B
配置
# --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