Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 611 Bytes

CONTRIBUTING.md

File metadata and controls

18 lines (13 loc) · 611 Bytes

Contributing

To keep a consistent end of line character between developers, the autocrlf setting of Git should be set to true.

git config --global core.autocrlf true

If the previous command was run after the repository was clone, Git's working tree might mismatch with your current configuration. Simply run the following commands in order to fix the issue.

git rm --cached -r .
git reset --hard