xxxxxxxxxx
git add --all
git add .
git commit -m "uploaded fixed sources 3"
git push origin master
xxxxxxxxxx
# Clear the Git index
git rm -r --cached .
# Add all files and directories again
git add .
# Commit the changes
git commit -m "Fixed issue with git add not working"
# Push the changes to the remote repository
git push origin <branch-name>