After a successful merge request , the branch get’s deleted on the gitlab but it still exist on my local machine so how can I remove that branch locally ?
How can I remove config-tailwind branch locally only ?
>Solution :
You can fetch with --prune so that deleted remote branches disappear on the local repository
git fetch --prune -a
