博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决git pull 每一次都需要输入密码的问题
阅读量:6073 次
发布时间:2019-06-20

本文共 682 字,大约阅读时间需要 2 分钟。

方法1:

当我们配置好我们的git以后呢,我们可以在配置文件~/.gitconfig~/.config/git/config 文件里加入这么两行:

[credential]           helper = store

这样的话,git就会帮助我们记住密码了;

 

方法2:

当然也可以直接通过命令进行配置,如下:

git config --global credential.helper store

 

 

(*******       补充:方法二 的命令很好理解,与配置用用户信息的格式相似的:

$ git config --global user.name "John Doe"$ git config --global user.email johndoe@example.com
$ git config --global core.editor emacs
 
配置完以后,配置文件的内容如下:
1 [user]                                                                                                                           2         name = Johe Doe  3         email = johndoe@example.com  4 [core]  5         editor = emacs  6 [credential]  7         helper = store
                        ********)

转载地址:http://zangx.baihongyu.com/

你可能感兴趣的文章
set的常用用法
查看>>
以命令行方式启动instruments
查看>>
Hadoop HDFS Federation 配置
查看>>
个人简历制作工具V1.09
查看>>
trip的数据类型
查看>>
C语言常见问题分析(1)
查看>>
ubuntu14.04安装nginx+php5-fpm
查看>>
试用mysql的infobright引擎
查看>>
Select 模型简介
查看>>
WAN技术
查看>>
Linux中影响变量的命令
查看>>
记一个命令msinfo32
查看>>
windows server 加入Samba NT域
查看>>
TCL中Expect 交互的学习小结
查看>>
iptables+squid经典配置实例,squid经典配置实例,iptables经典配置实例
查看>>
mesos 集群安装部署chronos(5)
查看>>
ceph 集群报错:mds0: Client failing to respond to capability release
查看>>
TFTP与FTP的比较
查看>>
通过javaAPI上传文件到HDFS文件系统
查看>>
【学神】 1-0学习前的准备及基础知识
查看>>