I followed directions found here and I am still ending up with the same handful of files. Even if I specifically invoke git -rm --cached those/files*
, when I call git status
I still see those same files in under "Untracked files:"
Here is what my gitignore file looks like:
# Files that exceed 100MB #
###########################
./data/9-26-18/altrans/SkinSunExposedLowerleg.Altrans.bestPerLink
./data/9-26-18/altrans/MuscleSkeletal.Altrans.bestPerLink
./data/9-26-18/altrans/Thyroid.Altrans.bestPerLink
./data/9-26-18/altrans/WholeBlood.Altrans.bestPerLink
./data/9-26-18/altrans/NerveTibial.Altrans.bestPerLink
./data/9-26-18/altrans/HeartLeftVentricle.Altrans.bestPerLink
./data/9-26-18/altrans/Lung.Altrans.bestPerLink
./data/9-26-18/altrans/AdiposeSubcutaneous.Altrans.bestPerLink
./data/9-26-18/altrans/ArteryTibial.Altrans.bestPerLink
How do I make it so that these files, along with any other files I enter into .gitignore which exceeds 100MB in the future, are not even untracked, but are ignored altogether?