git push -u origin main没有响应并且无法工作

4uqofj5v  于 2022-12-25  发布在  Git
关注(0)|答案(1)|浏览(283)

我在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命令没有给出任何结果,甚至没有错误。
请参见以下屏幕截图:

vyu0f0g1

vyu0f0g11#

我看起来它工作了。在你问这个问题的时候,你的repo中有对main分支的提交。(第一次提交不是'First commit',但我不确定你发布了真实的的命令)。

相关问题