typo(git): 补充全局配置命令缺少的参数

pull/105/head
dabfdj 10 months ago
parent a011c5e2d7
commit 908603c21a
No known key found for this signature in database
GPG Key ID: A5131B57846F145D

@ -8,8 +8,8 @@
############################################################################## ##############################################################################
# 配置 # 配置
############################################################################## ##############################################################################
git config --global "Your Name" git config --global user.name "Your Name" 配置全局用户名
git config --global "Email Address" git config --global user.email "Email Address" 配置全局邮箱地址
git config --global credential.helper store 保存密码(每次要输密码/重复输密码) git config --global credential.helper store 保存密码(每次要输密码/重复输密码)
git config user.name "Your Name" 配置当前仓库用户名 git config user.name "Your Name" 配置当前仓库用户名
git config user.email "Email Address" 配置当前仓库邮箱地址 git config user.email "Email Address" 配置当前仓库邮箱地址

Loading…
Cancel
Save