1、先cd到根目錄,執(zhí)行g(shù)it config --global credential.helper store命令
[root@iZ25mi9h7ayZ ~]# git config --global credential.helper store
2、執(zhí)行之后會(huì)在.gitconfig文件中多加紅色字體項(xiàng)
[user]
name = 天明
email = xxxx@xxxx.com
[credential]
helper = store
3、之后cd到項(xiàng)目目錄,執(zhí)行g(shù)it pull命令,會(huì)提示輸入賬號(hào)密碼。輸完這一次以后就不再需要,并且會(huì)在根目錄生成一個(gè).git-credentials文件
4、之后pull/push代碼都不再需要輸入賬號(hào)密碼了~
注:轉(zhuǎn)自原文 linux git pull/push時(shí)免密碼