I have renamed a folder in the file system and also used:
git mv oldName newName
However when I type:
git status
There all the subfolders and files showing as:
deleted: oldName/Subfolders/filenames
How can I fix this? I’ve tried:
git clean -f
Didn’t help, still the same.
1