标签:mail min strong nis bsp 执行 密码 dmi image
一:生成密钥
1.设置全局账号信息
git config --global user.name "用户名"
git config --global user.email "邮箱"
2.生成密钥
ssh-keygen -t rsa -C ‘邮箱‘
二:git设置记住密码
方法一:
安装好git之后一般会在C盘的C:\Users\Administator目录下生成 .gitconfig配置文件。用文档编辑工具打开该文件
添加:
[user]
name = wb-ly409739 //你的用户名
email = wb-ly409739@alibaba-inc.com //你的git邮箱账号
[credential]
helper = store
如图:
然后保存就可以了。
方法二:
直接在git bash 中执行命令:git config --global credential.helper store
在输入一次账号密码就可以保存了
标签:mail min strong nis bsp 执行 密码 dmi image
原文地址:https://www.cnblogs.com/toAnd/p/10209289.html