lysdexic@programming.dev to Git@programming.devEnglish · 1 year agoPlease Add .gitattributes To Your Git Repositorydev.toexternal-linkmessage-square11fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkPlease Add .gitattributes To Your Git Repositorydev.tolysdexic@programming.dev to Git@programming.devEnglish · 1 year agomessage-square11fedilink
minus-squarelysdexic@programming.devOPlinkfedilinkEnglisharrow-up1·1 year agoFor those who want a ready-made set of .gitattribute files you can simply drop on your project, here’s this fancy GitHub link. https://github.com/gitattributes/gitattributes Once you add a .gitattributes file to your project, make sure you push a commit that re-normalizes all relevant files: git rm --cached -r . git reset --hard
For those who want a ready-made set of
.gitattribute
files you can simply drop on your project, here’s this fancy GitHub link.https://github.com/gitattributes/gitattributes
Once you add a
.gitattributes
file to your project, make sure you push a commit that re-normalizes all relevant files: