I have a fairly new repository with 12 commits, all done without line-ending normalization.
No one else is using the repository and I'd like to rewrite history such that line-ending normalization is applied from the beginning (and avoid a commit in the middle that changes line-endings).
Can this be done with git rebase -i
or something else? I'm guessing just reordering it with a commit of .gitattributes
to the beginning won't fix it.