I have a problem with the line terminator CR LF.
before I had set line endings like No Set, but this did not allow me to load the files correctly on the remote git with a commit and push.
Remotely the file was loaded correctly but there was only the presence of LF and CR was missing
Example Upload pippi pluto CR LF
Commit and push git remote pippo pluto LF
I changed the setting line endings with:Checkout is-as, commit as-is core.autocrlf is set to false
Now the file is loaded correctly ( line endings CR LF) on git remote through commit and push but only when the file is new
Old files remain with the problem of line termination ( only LF but missing CR ). Git does not allow me to reload the files with the correct terminators (CR LF) as git are identical but remotely is missing the terminator (only LF).
How can I force the re-upload of the incorrect files with correct file or of the whole directory containing these files (there are many files that have this problem) ?
thank you Best Regards