我想在GitHub存储库中创建一个文件夹,并想在该文件夹中添加文件。我该如何做到这一点?


当前回答

下面是一种在存储库中创建文件夹的简单、快速、当前可用的浏览器方法

1)单击存储库/创建新的存储库。

2)单击“创建添加文件”,然后创建一个新文件。

3)用“/”标记给你想要创建的文件夹名称,然后在其中添加一个文件

4)提交更改

按顺序点击这里查看上述步骤的可视化表示。

其他回答

首先,您必须将存储库克隆到本地机器

git clone github_url local_directory

然后你可以在你的local_directory中创建本地文件夹和文件,并使用以下命令将它们添加到存储库:

git add file_path

你也可以添加所有的东西使用:

git add .

注意,Git不跟踪空文件夹。解决方法是在要跟踪的空文件夹中创建一个文件。我通常将该文件命名为空,但它可以是您选择的任何名称。

最后,你提交并推回GitHub:

git commit
git push

有关Git的更多信息,请参阅Pro Git书籍。

下面是一种在存储库中创建文件夹的简单、快速、当前可用的浏览器方法

1)单击存储库/创建新的存储库。

2)单击“创建添加文件”,然后创建一个新文件。

3)用“/”标记给你想要创建的文件夹名称,然后在其中添加一个文件

4)提交更改

按顺序点击这里查看上述步骤的可视化表示。

只需将文件夹从Windows资源管理器拖到浏览器的github上传文件显示-现在文件夹将自动添加…

点击新文件在github回购在线。 然后写文件名为myfolder/myfilename,然后给出文件内容并提交。然后文件将在该新文件夹中创建。

对于使用浏览器的用户,可以执行以下操作:

Once in the master repository, click on Create new file. In the name of file box at the top, enter the name of your folder Use the / key after the name of the folder. Using this forward slash creates the folder You can see a new box appear next to the folder name wherein you can type the name of your file. In the Commit new file box at the bottom of the page, you can type the description for your file. Select the radio button Commit directly to the master branch. Click on the Commit new file button You will see the new directory will be created.