Hacker News new | ask | show | jobs
by cmwelsh 3890 days ago
If you use a pull request workflow then at the very least, you're forced to merge master into your branch (if there are conflicts) before merging your branch into master.

You should never (not even rarely) resolve merge conflicts on master...

1 comments

You probably know this but just to be clear, to resolve conflicts on your pull request branch, you may merge master into your branch or rebase that branch on master; GitHub makes sense of either kind of resolution.