I have a submodule at the following path: src/level_1/level_2/my_Submodule
.
In VS Code, I changed the path to: src/level_1/level_2/level_3/my_Submodule
.
In this case, git gives me an error that the "path to the my_Submodule is not found".
How can I make git to use the new path that I already modified?
I can't use git mv old_path new_path
because I have to change the path from inside vscode itself, so vscode can update the imports, so I won't have broken paths.
I already read all the similar questions in stackoverflow and none of them solves the situation I explained above.