一、避免重复输入账号和密码
在git bash终端中执行以下命令:
git config --global credential.helper store
执行完这个命令后,在C:\Users\Administrator\.gitconfig中会多出以下内容:
[credential]
helper = store再次执行git pull/push操作,第一次会让输入账号和密码,以后不再提示输入。
二、待续
本文共 252 字,大约阅读时间需要 1 分钟。
一、避免重复输入账号和密码
在git bash终端中执行以下命令:
git config --global credential.helper store
执行完这个命令后,在C:\Users\Administrator\.gitconfig中会多出以下内容:
[credential]
helper = store再次执行git pull/push操作,第一次会让输入账号和密码,以后不再提示输入。
二、待续
转载于:https://my.oschina.net/kun123/blog/794303