I have 2 files firtst-page.html
and first-page.html
new lines added to first-page.html file from different branches. While merging results in conflicts and can't revert.. one pull request with following lines
<html>
<body>
<h1>this is master file</h1>
who is this
</body>
</html>
another pull request with
<html>
<body>
<h1>this is master file</h1>
firtst-page firtst-page firtst-page
</body>
</html>
My questions are
- How to resolve this conflict?
- Why such conflict?
- Do github allow multiple pull request at a time?