tags:

views:

23

answers:

2

If I merge branch a in b, after merging i have to push then branch for update the remote branch or merge updates remotes branch?

+1  A: 

You have to push. When you merge, you're only working with branches in your repo. If you want to publish them to your public (GitHub) repo, you have to push them out (just like any change).

mipadi
A: 

After your merge with your local branches, you have to push the change to your remote branches.

Daniel Chen