Skip to content

Commit

Permalink
gitignore: Fix pattern
Browse files Browse the repository at this point in the history
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".
  • Loading branch information
Michael Reed committed Jan 10, 2016
1 parent b1c4b72 commit df0dbaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config.h
/config.h
*.swo
*.swp
*.o
./vis
dependency
/vis
/dependency

0 comments on commit df0dbaa

Please sign in to comment.