git で空ディレクトリを追加するには
そのままでは追加できないので普通は
$ mkdir tmp $ touch tmp/.gitignore
とかするのですが,Rails ではそれがいくつもあるので手動では面倒です.なので find を使って自動すると便利です.
$ find . -type d -empty -not -path './.git*' -exec touch {}\/.gitignore \;
そのままでは追加できないので普通は
$ mkdir tmp $ touch tmp/.gitignore
とかするのですが,Rails ではそれがいくつもあるので手動では面倒です.なので find を使って自動すると便利です.
$ find . -type d -empty -not -path './.git*' -exec touch {}\/.gitignore \;