I have 3 branch -> Master
, develop
and admit_card
. I had created before admit_card
from the develop
branch. I always made changes on admit_card
branch and merge it into develop
.
But suddenly I have changed some more files and also deleted folder form the develop
branch. And now I want to copy/keep updated to the admit_card
branch like develop
branch (By deleting folders and files).
I merged it with develop
branch. It is merging with develop
branch properly. But the issue is the folders and files I deleted from the develop
branch is still showing into the admit_card
branch.
here is the merge develop branch with admit_card
branch.
git checkout admit_card
git merge develop
what should I do please? How can I copy/replace exact develop
branch to admit_card
branch? Can anybody please help me?
Thank you