On Windows: (looks correct)

On WSL2 Ubuntu: (every file shows as ‘modified’) – WHAT IS HAPPENING??

** Every file showing modified **
I tried: git config core.autocrlf false, but it did not fix ubuntu 
I then tried: git config core.autocrlf true

Bingo:(looks correct now)

Final Config: 
git config --edit
[core]
       repositoryformatversion = 0
       filemode = false
       bare = false
       logallrefupdates = true
       ignorecase = true
       autocrlf = true
[remote "origin"]
       url = https://earnhardt-gitea.duckdns.org/PDM/bats.git
       fetch = +refs/heads/:refs/remotes/origin/
[branch "master"]
       remote = origin
       merge = refs/heads/master


Leave a Reply