0


Git账户密码http方式的配置

Git账户密码http方式的配置

入门

git在提交时每次都需要输入密码和账号信息,可以将账号和密码进行持久化存储,

当git push的时候输入一次用户名和密码就会被记录,

不需要每次输入,提高效率,进行一下配置:

命令

git config --global credential.helper [mode]

cache
设置cache模式时,内置凭证系统把登录凭证信息保存在机器内存中一段时间,时间过后将被从内存中移除。一般是15分钟,可以在配置时添加参数去自定义–timeout 30000。

设置store模式后,内置凭证系统把登录凭证信息保留在硬盘中,并且只要不主动清除则会一直保留,没有失效时间,除非修改密码或主动取消该模式。不过该模式存在安全问题在于密码信息是用明文保存。

设置osxkeychain模式时,此模式下的凭证助手会对登录凭证信息进行加密处理并存储。该模式只能在Mac系统使用。

设置wincred模式时,该模式会对凭证信息处理放入到Windows凭据管理器中,但是还是可以获取用户信息。该模式只能在Windows操作系统中使用。

[credential]
    helper = manager-core 
    helper = store --file c:\\.git-credentials
    helper = cache --timeout 30000

删除账户密码

git config --global --unset credential.helper

设置永久存储的文件

git config --global credential.helper store --file=xxxxx

使用wincred模式

//删除某个windows凭据
cmdkey /delete:git:https://gitee.com
//添加某个windows凭据
cmdkey /generic:git:http://gitee.com /user:%username% /password:%password%

在这里插入图片描述
在这里插入图片描述
https://

标签: linux

本文转载自: https://blog.csdn.net/fujian9544/article/details/135079359
版权归原作者 思维小刀 所有, 如有侵权,请联系我们删除。

“Git账户密码http方式的配置”的评论:

还没有评论