You may be experiencing a size problem or an end-of-line (EOL) issue.
Here are some steps to follow:
- Check your
.gitignore
file against a standard one for Bootstrap projects like the one found at this link.
Ensure that you are not including unnecessary files (such as binaries) in your repository.
You can use the command git check-ignore -v -- a/file
to see if a file is being ignored or not.
- Review your
.gitattributes
file, such as the one available for web projects at this source (please note that the certificate on gitattributes.io
has expired, but it is still a valuable resource for these types of files)
*.bash text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
*.coffee text
*.css text diff=css
*.htm text diff=html
*.html text diff=html
...