git 設(shè)置不需要輸入密碼
https方式每次都要輸入密碼慌闭,按照如下設(shè)置即可輸入一次就不用再手輸入密碼的困擾而且又享受https帶來(lái)的極速
設(shè)置記住密碼(默認(rèn)15分鐘):
git config --global credential.helper cache
如果想自己設(shè)置時(shí)間,可以這樣做:
git config credential.helper 'cache --timeout=3600'
這樣就設(shè)置一個(gè)小時(shí)之后失效
長(zhǎng)期存儲(chǔ)密碼:
git config --global credential.helper store
增加遠(yuǎn)程地址的時(shí)候帶上密碼也是可以的躯舔。(推薦)
http://yourname:password@git.oschina.net/name/project.git
補(bǔ)充:使用客戶端也可以存儲(chǔ)密碼的驴剔。
如果你正在使用ssh而且想體驗(yàn)https帶來(lái)的高速,那么你可以這樣做: 切換到項(xiàng)目目錄下?:
cd projectfile/
移除遠(yuǎn)程ssh方式的倉(cāng)庫(kù)地址
git remote rm origin
增加https遠(yuǎn)程倉(cāng)庫(kù)地址
git remote add origin?http://yourname:password@git.oschina.net/name/project.git