我在Visual Studio上创建了一个React应用程序项目,当我尝试将其推送到GitHub时,它没有任何作用。
我一行一行地写着:
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/alperenyazmaci/asd.git
git push -u origin main
最后一个push命令没有给出任何结果,甚至没有错误。
请参见以下屏幕截图:
1条答案
按热度按时间vyu0f0g11#
我看起来它工作了。在你问这个问题的时候,你的repo中有对
main
分支的提交。(第一次提交不是'First commit',但我不确定你发布了真实的的命令)。