当前位置:   article > 正文

Git用户名/密码/邮箱,及设置git配置_git配置邮箱

git配置邮箱

一、查看信息:

查看用户名:git config user.name
查看邮箱:git config user.email
查看密码:git config user.password

二、设置信息
(1) --local: 本地设置(仅对当前仓库有效)

git config --local user.name “你的名称”
git config --local user.email “你的邮箱”
git config --local user.password “xxxxx密码”

(2) --global 全局设置(对当前用户的所有仓库有效)

git config --global user.name “你的名称”
git config --global user.email “你的邮箱”
git config --global user.password “xxxxx密码”
三、查看配置
使用 git config --list 查看已配置的git账户信息

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/632795
推荐阅读
相关标签
  

闽ICP备14008679号