我通过命令将本地现有的git repo添加为github.com作为远程对象
% git remote add origin https://github.com/username/synchm.git
并用
确认% git remote -v
origin https://github.com/username/synchm.git (fetch)
origin https://github.com/username/synchm.git (push)
但是,当我登录 github.com/username 时,新的存储库不可见,甚至在一个小时后也不可见。
我尝试输入
https://github.com/username/synchm.git
但它重定向到
https://github.com/username/synchm.git
并返回404。
这是怎么回事?
答案 0 :(得分:3)
您必须通过github网站创建存储库,然后将其推送到本地。
您正在做的只是告诉您的本地git配置origin
远程位置。
在github上创建存储库并设置origin
远程之后,您仍然需要先推送本地分支,然后它才能在github上可见。 git push origin master
(用您当前的分支名称替换主节点)。