---
title: "fix crlf for entire git repo"
date: 2021-03-22
published: false
tags:
  - python
template: blog-post
---


## Final Result

``` bash
git checkout main
git reset --hard
git rm -rf --cached .
echo "* text=auto" > .gitattributes
git add .
```
