Reputation: 550
I am new to git and github, i cloned a project's master branch to my local machine, i want to know how i can merge another remote branch to the branch i have on my machine.
Upvotes: 1
Views: 96
Reputation: 16743
Simply merge it.
git fetch
git checkout <mybranch>
git merge <remote_branch>
Upvotes: 1