From: Jeff King Date: Mon, 3 Oct 2016 20:49:22 +0000 (-0400) Subject: tmp-objdir: do not migrate files starting with '.' X-Git-Tag: v2.11.0-rc0~60^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=62fe0eb4804c297486a1d421a4f893865fcbc911;p=thirdparty%2Fgit.git tmp-objdir: do not migrate files starting with '.' This avoids "." and "..", as we already do, but also leaves room for index-pack to store extra data in the quarantine area (e.g., for passing back any analysis to be read by the pre-receive hook). Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/tmp-objdir.c b/tmp-objdir.c index 780af8e752..64435f23a4 100644 --- a/tmp-objdir.c +++ b/tmp-objdir.c @@ -188,7 +188,7 @@ static int read_dir_paths(struct string_list *out, const char *path) return -1; while ((de = readdir(dh))) - if (!is_dot_or_dotdot(de->d_name)) + if (de->d_name[0] != '.') string_list_append(out, de->d_name); closedir(dh);