From 83e1bb1aef8257e91684ec26b90d6ae5949d4754 Mon Sep 17 00:00:00 2001 From: Stawberri Date: Sun, 7 Dec 2014 21:43:59 -0800 Subject: [PATCH] Remove * in default .gitignore corpus/* matches all files in the first level directory inside corpus, so it would match corpus/lala.txt but not corpus/secret/lala.txt. corpus/ matches the directory corpus itself, meaning that corpus/ and everything inside of it shouldn't be uploaded. corpus/** matches everything inside corpus, including contents of subdirectories, while still allowing corpus/ itself to be uploaded. This solves the initial problem I posed (with corpus/secret/lala.txt), but it just feels tidier to just remove the entire folder. --- skeleton/.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skeleton/.gitignore b/skeleton/.gitignore index a1a0c1c..1ab5c7f 100755 --- a/skeleton/.gitignore +++ b/skeleton/.gitignore @@ -1 +1 @@ -corpus/* +corpus/