Git可以将用户名、密码和仓库链接保存在硬盘上,而不用每次git pullgit push的时候都输用户名和密码。

保存密码到硬盘一条命令就可以了

git config credential.helper store

git pullgit push的时候输入一次用户名和密码就会被记录了。