我对饭桶很陌生。我最近才创建了一个GitHub帐户。
我刚刚尝试推送我的第一个存储库(一个示例项目),但我得到以下错误:
No such remote 'origin'
我运行了以下命令:
git init
git commit -m "first commit"
git remote add origin https://github.com/VijayNew/NewExample.git
git push -u origin master
但是,当我运行git commit-m “ first commit ”时,我得到了以下消息:
nothing added to commit but untracked files present (use "git add" to track)
因此,我尝试将_ABC设置为_0,使用
git remote set-url origin https://github.com/VijayNew/NewExample.git
但我得到了以下错误:
No such remote 'origin'
我做错了什么,我该怎么办?