www.cnblogs.com/ruiyqinrui

开源、架构、Linux C/C++/python AI BI 运维开发自动化运维。 春风桃李花 秋雨梧桐叶。“力尽不知热 但惜夏日长”。夏不惜,秋不获。@ruiY--秦瑞

python爬虫,C编程,嵌入式开发.hadoop大数据,桉树,onenebula云计算架构.linux运维及驱动开发.

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

git clone https://username:passwd@gitlabAddr/*.git. proj001/

linux下每次git clone不需输入账号密码的方法

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

ame@zhenyun~ $touch .git-credentials

ame@zhenyun~ $vim .git-credentials

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

比如 https://aoeddklj:1233ds@github.com

2. 在终端下执行

ame@zhenyun~ $git config --global credential.helper store

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

[credential]

helper = store

这个时候输入命令git clone http://username@url 时不需要输入密码,即可完成代码的git

posted on 2022-01-26 17:12  秦瑞It行程实录  阅读(184)  评论(0编辑  收藏  举报
www.cnblogs.com/ruiyqinrui