1
我使用的是git的憑證存儲 git config --global credential.helper wincred
任何命令存儲Git的用戶名密碼不inital提示
有一個git命令不提示用戶通過用戶名密碼。根據我的bash腳本是有一個命令,我可以使用,如: git credential.helper-store --username ${x} --password ${y}
我使用的是git的憑證存儲 git config --global credential.helper wincred
任何命令存儲Git的用戶名密碼不inital提示
有一個git命令不提示用戶通過用戶名密碼。根據我的bash腳本是有一個命令,我可以使用,如: git credential.helper-store --username ${x} --password ${y}
您可以指定用戶名,至少有
git config credential.<url> "$x"
這將是有點不安全指定以相同的方式輸入密碼;將其留給憑證助手本身。
這就是爲什麼SSH密鑰被髮明... – rubenvb