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 ?
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 ?
You can fetch with --prune
so that deleted remote branches disappear on the local repository
git fetch --prune -a
© 2022 - 2024 — McMap. All rights reserved.
git remote prune <remote name, e.g. origin>
. – Eggcup