Last active
November 9, 2021 08:13
-
-
Save rennokki/7b70a6b9fbb50b0969c12e4761a368f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ensure LF is used for everything: | |
git config --global core.eol lf | |
git config --global core.autocrlf input | |
Run this: | |
git config --global core.excludesfile ~/.gitignore_global | |
Add this to ~/.gitignore_global: | |
/.vagrant | |
/node_modules | |
/public/vendor/* | |
/public/css/app.css | |
/public/js/app.js | |
/public/mix-manifest.json | |
.phpunit.result.cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment