当前位置 : 主页 > 操作系统 > centos >

四步搞定Linux git命令免输密码的设置

来源:互联网 收集:自由互联 发布时间:2022-05-02
下面由 linux系统教程 栏目给大家介绍Linux下git 命令 免输密码怎么设置,希望对需要的朋友有所帮助! Linux下git 命令 免输密码设置 1. 在~/目录下, touch创建文件 .Git-credentials touch .git-c
下面由linux系统教程栏目给大家介绍Linux下git 命令 免输密码怎么设置,希望对需要的朋友有所帮助!

1. 在~/目录下, touch创建文件 .Git-credentials

touch .git-credentials
vim .git-credentials

点击 “i” 进入编辑文件模式

https://{username}:{password}@github.com
例如 
https://zhang3:12345@github.com

点击“ESC” 然后输入“:wq”退出编辑并保存

2. 在终端下执行

git config --global credential.helper store

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

vi .gitconfig 进入
可以看到
[credential]

helper = store

4. 再次执行 git命令

只需要输入1次 正确的账号和密码 以后可以直接跳过输入账号密码了

推荐学习:《linux视频教程》

以上就是四步搞定Linux git命令免输密码的设置的详细内容,更多请关注自由互联其它相关文章!

【本文转自:香港服务器 http://www.558idc.com/hk.html提供,感谢支持】
网友评论