git 保存密码

共计 512 个字符,预计需要花费 2 分钟才能阅读完成。

  1. 配置全局凭证助手

    可以选择使用凭证缓存助手或者凭证存储助手。两者的区别在于,缓存助手只会在当前会话中保存凭证,而存储助手会将凭证永久保存到磁盘。

    使用凭证缓存助手

    git config --global credential.helper cache

    使用凭证存储助手

    git config --global credential.helper store
  2. 设置域名特定的凭证

    接下来,创建或编辑一个.git-credentials文件,在该文件中添加你的域名和凭证信息。默认情况下,这个文件位于用户主目录下。

    编辑或创建文件:

    nano ~/.git-credentials

    在文件中添加以下格式的内容(替换为你的实际域名、用户名和密码):

    https://username:[email protected]

    例如:

    https://myusername:[email protected]
  3. 确保配置文件读取凭证

    确保Git配置文件能够读取到你的凭证文件。编辑或创建~/.gitconfig文件,添加以下内容:

    nano ~/.gitconfig

    添加以下配置:

    [credential]
       helper = store
       useHttpPath = true
正文完
 0
评论(没有评论)