gitは空ディレクトリをコミット出来ないので、空の.gitkeepファイルを作ってコミットする。
以下を実行すると空ディレクトリに.gitkeepを作れる。
find . -type d -empty -not -path './.git*' -exec touch {}\/.gitkeep \;
gitは空ディレクトリをコミット出来ないので、空の.gitkeepファイルを作ってコミットする。
以下を実行すると空ディレクトリに.gitkeepを作れる。
find . -type d -empty -not -path './.git*' -exec touch {}\/.gitkeep \;