当我尝试将其推送到回购时,我收到此错误。
git push origin master
remote:找不到存储库。
致命:未找到存储库“https://github.com/username/projectname.git/”
网址有效。
答案 0 :(得分:1)
检查远程仓库:
git remote -v
如果没有存储库,则添加它:
git remote add origin https://github.com/username/repositoryName
拉出存储库:
git pull
git add and commit by:
git add .
git commit -m "your message here"
推送到存储库:
git push -u origin master