linux git 推送空文件夹

/*********************************************************************************
* linux git 推送空文件夹
* 说明:
* 绝大多数时候是不需要推送空文件夹的,但是做文件系统的时候是需要,有些文件夹
* 是需要等系统跑起来才行。
*
* 2017-1-3 深圳 南山平山村 曾剑锋
********************************************************************************/ 一、参考文档:
. How can I add an empty directory to a Git repository?
http://*.com/questions/115983/how-can-i-add-an-empty-directory-to-a-git-repository 二、操作实例:
find . -name .git -prune -o -type d -empty -exec touch {}/.gitignore \;
   find . -name .git -prune -o -type d -empty -exec touch {}/.emptyFolders \;
上一篇:PostgreSQL Replication之第十二章 与Postgres-XC一起工作(5)


下一篇:万恶之源 - Python迭代器