我在Github存储库中有一个文件夹。如何将文件“推送”到该文件夹​​中?

时间:2016-02-15 18:25:00

标签: git github repository

我在github上有一个远程存储库。我采取的步骤是:

  1. git init //initializes git in current directory
  2. git add * //adds every folder in directory to staging area
  3. git commit -m "message here" //commits all files in staged area with message
  4. git remote add origin remoteURL //add remote repository from github
  5. 现在,最后一步:

    1. git push origin master:master //this simply adds the file to the main page of my github repository.
    2. 如何将这些文件推送到Github存储库中的现有文件夹中?我有一个文件夹“Requirements”,在我的Github存储库中有一个自述文件。我需要将文件推送到那里。

      如果这个问题令人困惑,我很抱歉。我试图找到解决方案,但不能。

2 个答案:

答案 0 :(得分:0)

尝试执行git pull。然后,您应该在本地计算机上看到Requirements文件夹,并且可以将所需的文件放入其中。

答案 1 :(得分:0)

如果您还没有github存储库的本地副本,请将其克隆到本地PC,如下所示:

git clone [link to repo here]

然后在您的本地区域添加文件夹和文件。

右键单击您的本地文件,您将拥有Git选项。一个可能是提交选项。

然后回到GitHub。

您可以更轻松地使用GitHub桌面:https://guides.github.com/introduction/getting-your-project-on-github/