# If you would like to replace the last commit info
 git commit --amend
 
=== Re-normalizing the repository ===
Remove everything from the index.
 git rm --cached -r .
Write both the index and working directory from git's database
 git reset --hard
Prepare to make a commit by staging all the files that will get normalized. <br>
This is your chance to inspect which files were never normalized. You should 
get lots of messages like: "warning: CRLF will be replaced by LF in file. <br>
# Then Commit
 git commit -m "Normalized line endings"
== See also ==
[[Category:Git]]