linux服務器git pull/push時提示輸入賬號密碼之免除設置
1、先cd到根目錄媳维,執(zhí)行g(shù)it config --global credential.helper store命令
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; word-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">[root@iZ25mi9h7ayZ ~]# git config --global credential.helper store</pre>
2具壮、執(zhí)行之后會在.gitconfig文件中多加紅色字體項
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; word-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">[user]
name = 天明
email = xxxx@xxxx.com
[credential]
helper = store</pre>
3膝捞、之后cd到項目目錄吏颖,執(zhí)行g(shù)it pull命令失晴,會提示輸入賬號密碼。輸完這一次以后就不再需要耻警,并且會在根目錄生成一個.git-credentials文件
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; word-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">[root@iZ25mi9h7ayZ test]# git pull
Username for 'https://git.oschina.net': xxxx@xxxx.com
Password for 'https://xxxx@xxxx.com@git.oschina.net':</pre>
<pre style="margin: 0px; padding: 0px; white-space: pre-wrap; word-wrap: break-word; font-family: "Courier New" !important; font-size: 12px !important;">[root@iZ25mi9h7ayZ ~]# cat .git-credentials
https://Username:Password@git.oschina.net</pre>
4隔嫡、之后pull/push代碼都不再需要輸入賬號密碼了~