Git error, need to remove large file

前端 未结 8 617
北恋
北恋 2021-02-01 05:37

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         


        
8条回答
  •  清酒与你
    2021-02-01 05:55

    @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

    /log
    

    and try to commit again.
    Hope this details help you to fix your issue.

提交回复
热议问题