I need to change the case of folders and files. First thing I tried was renaming the folders, but Git didn\'t pick up the changes. So I tried using git mv -f co
Make sure to add the changes to index after rename folder with intermediate folder as below.
git mv oldfolder newfolder git add -u newfolder git commit -m "changed the foldername whaddup"
Reference