我刚开始使用GitHub,我只是在寻找简单直接的步骤,将我本地计算机上的项目上传到我在GitHub网站上创建的存储库。
我在上一个问题How to upload a project to Github尝试了此方法,但当我到达最后一步git push origin master
时,我收到了这些错误fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
我不明白为什么会发生这种情况,因为我遵循信中的指示。
这是我从创建本地存储库到push的执行上载的方式:
cd C:\Users\Brian Smith\Documents\Visual Studio 2013\Projects\KinectKickboxingBVversion1
git init
git add KinectKickboxingBVversion1
git commit -m "adding files".
git remote add originNew https://github.com/BrianJSmith/College_Kinect_Project.git
git push origin master
答案 0 :(得分:2)
git remote add origin https://github.com/BrianJSmith/College_Kinect_Project.git
不是originNew
。