nishimura.clubnishimura.club

.gitignoreで特定のディレクトリの特定のファイルは許可する

作成日
2021-05-10
更新日
2021-05-11

.gitignoreで特定のディレクトリの特定のファイルは許可する

example.js以外の/example/*のファイルを全て管理対象から外す。 ※正規表現を使用すること。

/example/* # /example/ではない !/example/example.js

example.jsは通す server.jsも通す /example.js/* は通さない!

ファイル名で除外する

/example/*のファイルを全て管理対象から外す。

/example/*.js

参考

Related