Fedor
Fedor

Reputation: 21357

Bitbucket Sync branch equivalent in Github

Bitbucket's web interface provides a nice 'Sync' option for branches. It actually merges master-branch in any selected branch from the UI.

I have not found, is there a similar option in Github web interface?

Upvotes: 9

Views: 1006

Answers (2)

Fedor
Fedor

Reputation: 21357

Unfortunately, there is no such option in GitHub Web UI at this moment.

Upvotes: 3

raxetul
raxetul

Reputation: 508

It is actually not different from a local merge of master/develop into your working branch and using local sync is better also.

Merging locally has the advantage to revert merge back easily by keeping the unmerged branch in the server. You can delete the local merged one and pull back the unmerged one from the server. In this way, you can try lots of merge strategies and use the one which suits best to you.

Upvotes: 1

Related Questions