I am getting this error when I try to push to git and I have no idea how to fix it.
Counting objects: 1239, done. Delta compression using up to 4 threads. Compre
@Daniel
You can ignore that log(s) file from git repo using .gitignore file. for that you have to add below line to your .gitignore file
.gitignore
/log
and try to commit again. Hope this details help you to fix your issue.