如何发布Github存储库

时间:2015-10-20 02:17:04

标签: macos github

我需要从计算机上的目录发布Github存储库。

我从项目的根目录添加,提交并推送了我想要发布的文件的origin master。通过这个,我的意思是我点击了"创建一个新的存储库"按钮并在我的终端中键入所有git命令,而在项目目录中我想将其作为我的存储库发布。有关我使用的命令列表,请参阅下面标有" Code。"

的部分

我在终端命令中看到没有错误。当我完成后,我在我的存储库中看到的只是README.md文件而没有别的。

我尝试检查我的终端,看看我的登录名是否与目标存储库的Github用户名相匹配。但我没有看到任何检查终端登录名的命令。

OS / config :在MacBook Air上使用OS X 10.10.5(Yosemite)

代码

我试过这个......
git init
git add README.md # This is the problem. (See my answer below.) Should be "git add ."
git commit -m "first commit"
git remote add origin https://github.com/"username"/"repository".git
git push -u origin master

2 个答案:

答案 0 :(得分:1)

这是对GitHub的基本推动,你得到了什么样的错误?

  

在命令行上创建一个新的存储库

git init
git add .      //This will add everything in the directory
git commit -m "first commit"
git remote add origin https://github.com/"username"/"repository".git
git push -u origin master
     

...或从命令行推送现有存储库

git remote add origin https://github.com/"username"/"repository".git
git push -u origin master

答案 1 :(得分:0)

这就是为我解决问题的原因......

第二个git命令行应该是git add .而不是git add README.md.添加目录中的所有文件,如接受的答案所述。

代码

git init
git add .  # This was the key line to change from what was tried in the question.
git commit -m "first commit"
git remote add origin https://github.com/username/repository
git push -u origin master