Как я могу решить конфликт?Какие шаги нужно выполнить?
Если у вас есть конфликты, выполните следующие шаги, чтобы исправить это:
# clean your local working directory with a stash or commit
# update your local repo with the content of the remote branches
git fetch --all --prune
# checkout the release_v1 branch
git checkout release_v1
# update the content if required
git pull origin release_v1
# merge the desired branch
git merge origin/master
На этом этапе ваш release_v1 содержит содержимое 2 веток сконфликты А теперь в ваших конфликтах.
Как только вы закончите с этим
# add the fixed conflicts and commit
git add . && git commit
git push origin release_v1
Вернитесь на ваш git-сервер, и теперь вы сможете объединить запрос на удаление, поскольку все конфликты разрешены