I have two local branches master
and dev
. Both branches contained three folders:
projectBeta
project
project_v1
I wan
What you need is git mv and git rm.
My guess is you probably rm'd the directories without letting git know. You must let git know because it keeps track of all the folders and needs to know how to deal with them correctly.
What you should do is:
git rm -r project
git rm -r project_v1
git mv projectBeta project