Skip to content

Instantly share code, notes, and snippets.

@abcprintf
Last active August 4, 2023 05:07
Show Gist options
  • Save abcprintf/804dfd97000d13c4dc3c492179b2b070 to your computer and use it in GitHub Desktop.
Save abcprintf/804dfd97000d13c4dc3c492179b2b070 to your computer and use it in GitHub Desktop.
# Auto-detect text files, ensure they use LF.
* text=auto eol=lf
# These files are always considered text and should use LF.
# See core.whitespace @ https://git-scm.com/docs/git-config for whitespace flags.
*.php text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4 diff=php
*.json text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
*.test text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
*.yml text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=2
# Exclude non-essential files from dist
/tests export-ignore
.github export-ignore
.php_cs export-ignore
.travis.yml export-ignore
appveyor.yml export-ignore
phpunit.xml.dist export-ignore
/phpstan/* export-ignore
/phpstan/rules.neon -export-ignore
git config --global core.autocrlf [true|false|input] // default false

git add --renormalize .

git rm --cached -r .
git reset --hard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment