I have to make a pull request to a repo.
I clone the project and it has only one branch : master
I checkout a new branch feature
and commit my changes to this branch.
I push my branch to Github and I'm now able to make a pull request. So I do it but it tells me now that I have conflicts.
I understand the problem. master
is ahead of feature
because I didn't "pull" the last changes that have been made to master when I waas working on feature
.
How can I fix it ? How can I "pull" the last changes of master into my feature
branch ?