0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

gitignore系メモ

Last updated at Posted at 2021-01-29

gitignore系メモ

配置する階層

.git以下ならどこでもいい。複数の.gitigoreファイルを配置できる。その場合、最下層のgitignoreの設定が優先される

書き方

階層

ファイル階層
a/-|
   |- apl/-|
           |-aplhoge.txt 
           |-hogedir/
   |- hoge.txt
   |- .gitignore

特定のファイルを対象外にしたい

.gitignore
/hoge.txt
/apl/hogedir

特定のファイルだけ対象にしたい

.gitignore
#階層関係なく全てのファイルを対象外にする
*
#apl/を対象外から外す
!/apl
#apl/以下のファイルを再帰的に対象外から外す。ワイルドカード1個だと、直下のみ対象外から外し、hogedir以下は対象外のまま。
!/apl/**
#Makefile通過
!/Makefile
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?