Normalized line endings #10
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The current repo contains a mix of CRLF and LF line endings. Since the project is targeted to be using Linux for the future they should be renormalized to LF
The procedure to allow git to renormalize for you is as follows.
* text=auto eol=lf
to.gitattributes
git add — renormalize .
then commitgit rm -rf --cached .
git reset --hard HEAD
This should be in a separate PR
Closed via #11