From c390a9538272304961688a9499801fc086b170fe Mon Sep 17 00:00:00 2001 From: yair reshef Date: Wed, 28 Jan 2015 11:53:11 +0200 Subject: [PATCH] gitignore now works also on subfolders --- .gitignore | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.gitignore b/.gitignore index b63dd98..7453d72 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ # Ignore list for Eagle, a PCB layout tool # Backup files -*.s#? -*.b#? -*.l#? +**/*.s#? +**/*.b#? +**/*.l#? # Eagle project file # It contains a serial number and references to the file structure @@ -12,26 +12,26 @@ eagle.epf # CAM files -*.$$$ -*.cmp -*.ly2 -*.l15 -*.sol -*.plc -*.stc -*.sts -*.crc -*.crs +**/*.$$$ +**/*.cmp +**/*.ly2 +**/*.l15 +**/*.sol +**/*.plc +**/*.stc +**/*.sts +**/*.crc +**/*.crs -*.dri -*.drl -*.gpi -*.pls +**/*.dri +**/*.drl +**/*.gpi +**/*.pls -*.drd -*.drd.* +**/*.drd +**/*.drd.* -*.info +**/*.info -*.eps -*.pro +**/*.eps +**/*.pro