将文件添加到GitHub存储库

时间:2011-09-26 13:08:36

标签: git github

如何将文件添加到GitHub存储库?我正在使用Windows,我的所有项目文件都在一个文件夹中,我只需将其上传到我的仓库。

3 个答案:

答案 0 :(得分:31)

一般的想法是添加,提交和推送您的文件到GitHub仓库。

首先你需要克隆你的GitHub仓库 然后,你将git添加你的其他文件夹中的所有文件:一个技巧是在git添加你的文件时指定一个备用工作树。

git --work-tree=yourSrcFolder add .

(从克隆的Git仓库的根目录完成,然后git commit -m "a msg"git push origin master

这样,您就可以将您的初始源文件夹与Git工作树分开。


请注意,自2012年12月初以来,您可以创建 new files directly from GitHub

Create new File

  

ProTip™:您只需使用网址预填充文件名字段即可   在网址末尾键入?filename=yournewfile.txt会预先填写名称为yournewfile.txt的文件名字段。

d

答案 1 :(得分:5)

您可以在Windows上使用Git GUI,请参阅说明:

  1. 打开Git Gui(在计算机上安装Git之后)。
  2. enter image description here

    1. 将您的存储库克隆到本地硬盘:
    2. enter image description here

      1. 克隆后,GUI打开,选择:“重新扫描”以进行更改:
      2. enter image description here

        1. 您会注意到扫描的文件:
        2. enter image description here

          1. 点击“Stage Changed”:
          2. enter image description here

            1. 批准并点击“提交”:
            2. enter image description here

              1. 点击“推送”:
              2. enter image description here

                1. 点击“推送”:
                2. enter image description here

                  1. 等待文件上传到git:
                  2. enter image description here

                    enter image description here

答案 2 :(得分:2)

打开github应用。 然后,将文件夹添加到您的计算机上的github repo文件中(您需要将repo复制到您的计算机上。大多数repo文件位于以下目录中:C:\ Users \ USERNAME \ Documents \ GitHub \ REPONAME) 然后,在github应用程序中,检查我们的回购。你可以轻松地从那里提交。