Skip to content

Commit

Permalink
Only ignore amalgamation files at the root (#641)
Browse files Browse the repository at this point in the history
Currently, the gitignore tries to ignore src/roaring.c

This actually only works in gitignore because git only considers the gitignore
when it would _add_ a file to be tracked, changes to existing files already in
git are tracked regardless of what's in .gitignore.

Fixes #637
  • Loading branch information
Dr-Emann authored Jul 8, 2024
1 parent 76a2cbb commit 8bcc0ef
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -321,11 +321,12 @@ paket-files/
__pycache__/
*.pyc

amalgamation_demo
amalgamation_demo.c
amalgamation_demo.cpp
roaring.c
roaring.h
roaring.hh
# Exclude amalgamation created files
/amalgamation_demo
/amalgamation_demo.c
/amalgamation_demo.cpp
/roaring.c
/roaring.h
/roaring.hh

#############END VISUAL STUDIO##############

0 comments on commit 8bcc0ef

Please sign in to comment.