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


当前回答

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

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

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

其他回答

在文件名字段中使用/来创建文件夹,例如在文件名字段中输入folder1/file1将创建文件夹folder1和文件file1。

原来的答案 您不能创建一个空文件夹,然后将文件添加到该文件夹,而是创建一个文件夹必须同时添加至少一个文件。这是因为git不跟踪空文件夹。

在GitHub上,你可以这样做:

转到要在其中创建另一个文件夹的文件夹 点击新建文件 在文件名的文本字段中,首先写上要创建的文件夹名 然后输入/。这会创建一个文件夹 您可以类似地添加更多文件夹 最后,为新文件命名(例如,.gitkeep,通常用于让Git跟踪空文件夹;但它不是Git的特性) 最后,单击提交新文件。

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

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

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

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

Java / Helloworld.txt

请按照以下步骤在存储库下创建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。

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

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.