LoginSignup
11
11

More than 5 years have passed since last update.

Git で空のディレクトリを管理する

Posted at
# 空のディレクトリに .gitkeep を追加する
find . -type d -not -path './.git*' -empty -print0 | xargs -0I% touch %/.gitkeep
11
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
11