我想在GitHub存储库中创建一个文件夹,并想在该文件夹中添加文件。我该如何做到这一点?
当前回答
对于使用浏览器的用户,可以执行以下操作:
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.
其他回答
Git不存储空文件夹。只要确保文件夹中有一个文件,比如doc/foo.txt,然后运行git add doc或git add doc/foo.txt,一旦你提交了,这个文件夹就会被添加到你的本地存储库中(一旦你推送它,它就会出现在GitHub上)。
您只需在本地存储库中创建所需的文件夹。例如,您创建了app和config目录。
您可以在这些文件夹下创建新文件。
Git规则:
首先,我们需要向目录中添加文件。 然后提交这些添加的文件。
Git命令执行提交:
Git添加app/ config/ git提交
然后给出提交消息并保存提交。
然后推送到远程存储库,
git push origin remote
要添加新目录,您只需在本地存储库中创建一个新文件夹。创建一个新文件夹,并在其中添加一个文件。
现在转到终端,像在Git中添加普通文件一样添加它。将它们放入存储库,并检查状态以确保创建了一个目录。
对于使用浏览器的用户,可以执行以下操作:
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.
下面是一种在存储库中创建文件夹的简单、快速、当前可用的浏览器方法
1)单击存储库/创建新的存储库。
2)单击“创建添加文件”,然后创建一个新文件。
3)用“/”标记给你想要创建的文件夹名称,然后在其中添加一个文件
4)提交更改
按顺序点击这里查看上述步骤的可视化表示。
推荐文章
- 如何修复Github页面上的HTTP 404 ?
- 如何显示数学方程在一般github的markdown(不是github的博客)
- 无法推送到远程分支,无法解析到分支
- 如何在GitHub上创建自己的存储库?
- Github“更新被拒绝,因为远程包含您在本地没有的工作。”
- 如何在不同的用户名下推送到GitHub ?
- 在最初创建提交的GitHub上找到一个Pull Request
- Git凭据助手-更新密码
- 标签和释放的区别是什么?
- 切换到另一个Git标记
- Heroku和GitHub:“项目无法检索,内部服务器错误”
- 将现有项目推到Github
- 在git存储库中处理密码的最佳实践是什么?
- Git:无法解决主机github.com错误,克隆远程仓库在Git
- 为什么'git commit'不保存我的更改?