Linux下git操作项目时保存账号密码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下git操作项目时保存账号密码相关的知识,希望对你有一定的参考价值。

参考技术A git 每次操作需要输入用户名/密码验证

在项目根目录下找到 .git/config 文件进行修改

这样操作开发当前项目,git操作不会提示再次输入账号密码,当然还可以用其他方法

git config查看配置

Linux下 保存 git账号密码

一、通过文件方式

1.在~/下, touch创建文件 .git-credentials, 用vim编辑此文件,输入内容格式:

touch .git-credentials
vim .git-credentials

在里面按“i”然后输入: https://username:password@github.com 

比如 https://account:password@github.com

2. 在终端下执行

git config --global credential.helper store

3. 可以看到~/.gitconfig文件,会多了一项:

[credential]
helper = store

4.OK

 

二、通过缓存方式

要求:git版本需要>=1.7.10

git config --global credential.helper cache
# 默认缓存密码15分钟,可以改得更长, 比如1小时
git config --global credential.helper 'cache --timeout=3600'

以上是关于Linux下git操作项目时保存账号密码的主要内容,如果未能解决你的问题,请参考以下文章

mac 中git操作账号的保存与删除

Linux下 保存 git账号密码

Linux下 保存 git账号密码

linux 保存git的账号密码

Linux git 操作免账号/密码配置方式

Linux下解决每次git pull/git push都需输入密码的问题