linux 保存git的賬號密碼
阿新 • • 發佈:2018-05-07
lob count user 緩存 acc vim -- 今天 tor
今天在弄jenkins一建發版,遇到了git下載每次都要輸入賬號密碼,所以百度一下,使用一下方法,搞定
一、通過文件方式
1.在~/下, touch創建文件 .git-credentials, 用vim編輯此文件,輸入內容格式:
touch .git-credentials
vim .git-credentials
在裏面按“i”然後輸入: https://{username}:{password}@github.com
比如 https://account:[email protected]
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的賬號密碼