5
Sometimes when I make one merge request in a project, it appears that there are commits Behind, I understand that, this happens due to the fact that at the time of creating my branch, based on the branch where I will create the merge request then there were no commits which were created after, and in which I ended up not updating my branch current.
What I tried to illustrate is the following scenario:
My question is, what are the dangers of accepting the merge of my branch even if there is commits Behind?
Sometimes these 'Behind commits' are in other files than the ones I changed, so much so that it doesn’t conflict when creating the merge request
If I merge, even if the codes of commit Behind do not affect the code I have touched, I run the risk of rewriting the codes that were created in commit Behind?
From what I understand from your explanation, this is the most common scenario in the versioning world, there is no problem, if there is no conflict, just merge, there is no need to synchronize the branch.
– Lucas Guima