Published on

.gitignore の特殊パターン

パターン 1 特定のフォルダのみ git 管理配下にしたいとき

Ex)下記の場合で tmp のみ git 管理配下にしたいとき

project_root
├tmp
|└.gitignore
├log
└.gitignore

project_root/.gitignore

*/*
!/tmp

tmp/.gitignore

*
!.gitignore
`