将现有的git repo添加到github.com之后,从github.com内部看不到

时间:2019-06-20 11:11:57

标签: git github

我通过命令将本地现有的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。

这是怎么回事?

1 个答案:

答案 0 :(得分:3)

您必须通过github网站创建存储库,然后将其推送到本地。

您正在做的只是告诉您的本地git配置origin远程位置。

在github上创建存储库并设置origin远程之后,您仍然需要先推送本地分支,然后它才能在github上可见。 git push origin master(用您当前的分支名称替换主节点)。