Reputation: 500
I have multiple branches created under my master : Branch 1, Branch 2, Branch 3, etc.
Each branch has his own code. But how i can merge all my branches and have a commun code ?
So far when i checkout a specific branch, i only have the code for that branch.
I'm using SourceTree
Upvotes: 0
Views: 597
Reputation: 387
You can Pull from the remote copy of each branch into your master branch. Make sure you are up to date and then Checkout your master branch. Choose Pull and then select your remote branch to pull from.
Upvotes: 1