在开发中我们经常需要通过 git 对代码进行拉取和提交,频繁地输入用户名和密码会带来很大的麻烦,下面就介绍一下解决git每次拉取、提交代码时都需要输入用户名和密码的方法。
很简单,只要两步骤就能实现:
git config --global credential.helper store
git pull