上传代码到githup,密码正确老是登不上


git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https:****
git push -u origin main
or push an existing repository from the command line

git remote add origin https:***
git branch -M main
git push -u origin main

如果你遇到以下问题
在这里插入图片描述
建议增加 git config --system --unset credential.helper 再尝试

猜你喜欢

转载自blog.csdn.net/bryangp/article/details/112979269