Sometimes the current dir becomes a bit cluttered, and git clean -df sometimes removes too much (namely the cache dir and the modeldb-meta.yaml file), so adding a .gitignore with those 2 allows for easier cleanup of the project dir. Note that we can remove those as well using git clean -xdf.
Sometimes the current dir becomes a bit cluttered, and
git clean -df
sometimes removes too much (namely thecache
dir and themodeldb-meta.yaml
file), so adding a.gitignore
with those 2 allows for easier cleanup of the project dir. Note that we can remove those as well usinggit clean -xdf
.