爲了避免在所有輸入密碼(在Windows或Unix),您可以:
- 檢查,家是定義(在Windows上,它不是默認情況下)
- 設置一個
_netrc
文件,內容如下:
machine codaset.com
login your_codaset_login
password your_codaset_password
注:%HOME%\_netrc
在Windows上,$HOME/.netrc
在Unix
這樣一來,當你克隆你的回購,而不是鍵入:
git clone https://[email protected]/username/project_name.git destination_folder_name.git
,你可以刪除初始用戶名:
git clone https://codaset.com/username/project_name.git destination_folder_name.git
,你將不必輸入密碼。
如果你不想把你的憑據(特別是您的密碼)在明文在.netrc
文件,你可以加密netrc
文件,gpg
:詳見「Is there a way to skip password typing when using https:// github」
這並使其提示我輸入密碼,但隨後還是失敗,錯誤502 – 2011-04-27 17:01:30