我如何复制GitHub上的文件夹?

这个问题在这里已经有了答案:

  • 我如何将一个空目录添加到Git存储库? 28个答案

  • Git / GitHub不存储空目录。

    约定是将空的.gitkeep文件放入其中。


    你需要更详细的技术解释吗? 检查这个答案


    find . -type d -empty -not -path '*/.*' -exec touch {}/.gitkeep ; 将忽略.git文件夹内的空目录

    链接地址: http://www.djcxy.com/p/7881.html

    上一篇: How do I copy folders on GitHub?

    下一篇: How to commit only Directory?