I cloned the repository to the local machine after cloning, I tried to create a new branch.
I get a message “nothing added to commit but untracked files present”. I did not perform file changes.
After which I suggested that the problem with CR + LF line endings is my current local wine system 10.
I tried to change this by setting the configuration flag
`git config core.autocrlf false.
echo “* text = auto” >>. gitattributes
rm .git / index # Remove the index to force Git to
git reset # re-scan the working directory.
git status # Show files that will be normalized.
git add -u
git add .gitattributes
git commit -m “Introduce end-of-line normalization” `
But this action also did not lead to a result.