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


当前回答

创建一个新文件,然后在文件名上使用斜杠。例如

Java / Helloworld.txt

其他回答

要添加新目录,您只需在本地存储库中创建一个新文件夹。创建一个新文件夹,并在其中添加一个文件。

现在转到终端,像在Git中添加普通文件一样添加它。将它们放入存储库,并检查状态以确保创建了一个目录。

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

请按照以下步骤在存储库下创建Folders

1. Login into Github.
2. Select your repository.
3. Tap on "Add file" to the "Create New File" Option.
4. Enter your Folder Name(Ex: RepositoryName/FolderName) and enter "/".
5. Enter file name to commit. I have created README.md for each folder so that it will be easy for me to maintain the details of every folder.
6. Scroll down to the Commit new file section.
7. Choose an option to merge directly to the "master" branch or "Create a new branch".
8. Finally, You need to tap on "Commit new file".

现在,只要点击Commit new file,它就会创建并带您回到Repository。

我不知道当我在存储库名称中使用“/”时,它会被“-”取代,也许github改变了创建文件夹的方法。

我将告诉你们我是如何创建一个空文件夹并添加文件的。

点击新建 输入您的文件夹名称,不要输入其他任何内容 点击“添加README文件” 点击“创建存储库” 现在克隆您创建的文件夹。 在本地回购中添加文件或文件夹 提交更改。 好了。

创建一个新文件,然后在文件名上使用斜杠。例如

Java / Helloworld.txt