Reputation: 1263
imagine I have branch called 'feature/login' and many other branches that I've merged to the 'develop' branch and they have very big changes.
Would it be good to delete the 'feature/login' branch (after already doing changes and merging it to develop) if 'develop' is much much ahead this branch and then re-create it?
Thanks
Upvotes: 2
Views: 124
Reputation: 578
There are few approaches to work with different active branches and keep them up to date:
And Before do any merging it is better to pull origin via git pull --all
to pull all branches.
Upvotes: 2