將 git 的密碼儲存起來
other git -git config --global credential.helper store
Why
老是要輸入帳號密碼?
How
使用 git config
在 git
中啟用憑據存儲。
例如:git config --global credential.helper store
執行命令時,第一次從遠程存儲庫中提取或推送時,系統會詢問您的用戶名和密碼。
之後,就不必提供用戶名和密碼。
存儲格式是以 .git-credentials
純文本格式存儲的文件。
此外,可以使用其他幫助程序,
例如使用緩存:git config credential.helper cache <timout>
選項 timeout
,定義要緩存多久, default 為 900 seconds (15 minutes)。
P.S.
如果使用此方法,git
帳戶密碼將以 plaintext
格式保存在全域的 .gitconfig
中,
在 linux 中路徑為 /home/[username]/.gitconfig
。
如果不想留下密碼,可在 git
帳戶中改用 ssh key
認證。
建立一個快速樣板
<<