You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a .gitattributes for the binary assets; check in source files in a manner that line endings are not CRLF but utilize the best practices for source modules being checked into a repository having their line endings as LF. This is controlled by a client using the git config setting core.autocrlf on Windows set to something other than false.
.gitattributes example:
text=auto
*.bmp binary
This shows up when attempting to apply patches from a machine running Linux using bitbake as a build system.
Add a .gitattributes for the binary assets; check in source files in a manner that line endings are not CRLF but utilize the best practices for source modules being checked into a repository having their line endings as LF. This is controlled by a client using the git config setting core.autocrlf on Windows set to something other than false.
.gitattributes example:
*.bmp binary
This shows up when attempting to apply patches from a machine running Linux using bitbake as a build system.
Possible command to utilize:
find . -type f ! -path './.git/' ! -path '.bmp' -print | xargs -L 1 dos2unix
The text was updated successfully, but these errors were encountered: