Bootstrap

解决Gitee每次push都需要输入用户名和密码

其实很简单,只需要使用命令

git config --global credential.helper store

在你下次push时只需要再输入一次用户名和密码,电脑就会保存下来,之后就无需进行输入了。

;