From df0dbaa1310acceed3b73c6f74be84eceea1aace Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Sat, 9 Jan 2016 15:01:16 -0500 Subject: gitignore: Fix pattern From `man gitignore': o A leading slash matches the beginning of the pathname. For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c". --- .gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c4e7b69..a3fd03a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ -config.h +/config.h *.swo *.swp *.o -./vis -dependency +/vis +/dependency -- cgit v1.2.3