运行git push -u origin master命令后出现错误
问题描述:
运行此命令后git push -u origin master询问我用户名和密码,当我输入用户名和密码时出现错误.如果有人有解决方案,请建议我
After run this command git push -u origin master asking me for username and password and when i enter username and password getting some error. If anyone have solution please suggest me
答
该错误消息表明问题是由于远程包含您在本地没有的工作.因此,请尝试先运行git pull
来集成远程更改,然后再次运行git push
.
The error message indicates the issue is because the remote contains work that you do not have locally. So try to run git pull
first to integrate the remote changes, then run git push
again.