git帐号更换密码

git帐号更换密码后,执行git pull origin v1时候,出现错误提示:

git
remote: Invalid username or password. If you log in via a third party service you must ensure you have an account password set in your account profile.
git

解决方法是,执行命令:

git
git config --global user.password "xxxxxx(your password)"
git

再次执行git pull origin v1时候,git要求输入密码,重新输入正确的密码即可。

你可能感兴趣的:(Git)