.wakatime-project
.github/settings.yml
.github/dependabot.yml
README.md
https://github.com/alexkaratarakis/gitattributes
missing_attributes=$(git ls-files | git check-attr -a --stdin | grep "text eol=lf")
if [[ "$missing_attributes" ]]; then
echo ".gitattributes rule missing for the following files:";
echo "$missing_attributes";
else
echo "All files have a corresponding rule in .gitattributes";
fi
git add . -u
git commit -m "Saving files before refreshing line endings"
git add --renormalize .
git status
git commit -m "Normalize all the line endings"