【Git技巧】配置全局账号和本地凭证,从此告别频繁的账号密码输入


为解决Git中每次都需要输入账号密码的问题,本文介绍了如何配置全局的用户账号和邮箱地址,以及如何保存用户本地凭证,在不同的项目中设置各自的local配置,从而优化Git操作,提高效率。

配置全局的用户账号

在桌面单击右键,找到git bash here, 按照以下指令输入用户名与邮箱

git config --global user.name "6s1"  // 用户名

git config --global user.email "6s1@6s1.com"  // 邮箱

问题:每次都会提示输入账号密码

解决方法是:保存一下用户本地凭证,这样每次git操作时,使用保存的凭证就好了。

命令

## 全局的
git config --global credential.helper store

git config --global user.email "email"
git confgi --global user.name "name"

在多个项目,不同的git服务器,不同用户名时,对每个项目设置各自的local 配置。

## local
git config --local credential.helper store

git config --local user.email "email"
git confgi --local user.name "name"


扫描二维码,在手机上阅读

理解 JavaScript 中的执行环境和作用域

Vue教程:如何在methods中使用全局过滤器

评 论