Given
- branch
development
to be merged intointegration
- both branches do no permit
push
- while merging there is a conflict
$ git merge development
Auto-merging .gitlab-ci.yml
CONFLICT (content): Merge conflict in .gitlab-ci.yml
Automatic merge failed; fix conflicts and then commit the result.
STEP #1
Create a temporary branch from integration
, and merge development
$ git checkout integration
$ git checkout -b patch-1
$ git merge development
Auto-merging .gitlab-ci.yml
CONFLICT (content): Merge conflict in .gitlab-ci.yml
Automatic merge failed; fix conflicts and then commit the result.
STEP #2 After fixing the conflicts manually, push temporary branch to origin
$ git push --set-upstream origin patch-1
STEP #3
Raise merge request from patch-1
into integration.
This gets merged successfully without conflicts.
STEP #4 Re-try merging development
branch into integration
,
$ git merge development
Auto-merging .gitlab-ci.yml
CONFLICT (content): Merge conflict in .gitlab-ci.yml
Automatic merge failed; fix conflicts and then commit the result.
At the end, I still get the same merge conflict.
- Any problem with this strategy ?
- Suggestions for corrections
Adding git log between two branches
$ git log --graph --oneline development origin/development integration origin/integration
* 3ae0efe (origin/integration, integration) Merge branch 'patch-1' into 'integration'
|\
| * c393837 Comment-01
|/
* 2a77f4f Merge branch 'release' into integration
|\
| * 67f7ed6 (release) Merge branch 'integration' into 'release'
| |\
| | * e15411f Comment-02
| |/
| * d5ec084 Merge branch 'integration' into 'release'
| |\
| | * 6540f71 Comment-02
| |/
| * 064b304 Merge branch 'integration' into 'release'
| |\
| | * 8def831 Comment-02
| |/
| * 4214907 Merge branch 'integration' into 'release'
| |\
| | * da7c967 Comment-02
| |/
* | b0bfb25 Merge branch 'development' into 'integration'
|\ \
| * | 75e4d3d
|/ /
* | 56ae216 (origin/feature/rbac-on-rbac-data) Merge branch 'development' into 'integration'
|\ \
* \ \ 3ca4d3b Merge branch 'development' into 'integration'
|\ \ \
* \ \ \ 9df80be Merge branch 'development' into 'integration'
|\ \ \ \
* \ \ \ \ 9c9718c Merge branch 'release' into integration
|\ \ \ \ \
| | |_|_|/
| |/| | |
| * | | | 94f6141 Merge branch 'integration' into 'release'
| |\ \ \ \
| | * | | | 99fddaf Comment-02
| |/ / / /
| * | | | 5e69629 Merge branch 'integration' into 'release'
| |\ \ \ \
| | * | | | bd2dc44 Comment-02
| |/ / / /
* | | | | d704342 Merge branch 'development' into 'integration'
|\ \ \ \ \
* \ \ \ \ \ c62b668 Merge branch 'development' into 'integration'
|\ \ \ \ \ \
| | | | | | | * fdbd3f4 (HEAD -> development, origin/development) Merge branch 'feature/two' into 'development'
| | | | | | | |\
| | | | | | | | * 840cbaf Feature Two
| | | | | | | |/
| | | | | | | * 8dd03dd Merge branch 'feature/one' into 'development'
| | | | | | | |\
| | | | | | | | * 8549cba Comment-01
| | | | | | | |/
| | | | | | | * fbc75d4 Merge branch 'feature/one' into 'development'
| | | | | | | |\
| | | | | | | | * a233226 Comment-01
| | | | | | | |/
| | | | | | | * f774d98 (tag: oct20.v1) Merge branch 'configuration/change-01' into 'development'
| | | | | | | |\
| | | | | | | | * 649ae41 Comment-03
| | | | | | | |/
| | | | | | | * a7ab4d8 Merge branch 'configuration/change-01' into 'development'
| | | | | | | |\
| | | | | | | | * eae0789 Comment-03
| | | | | | | |/
| | | | | | | * dc61af9 Merge branch 'defect-importdata-workday-exception' into 'development'
| | | | | | | |\
| | | | | | | | * 5842e04 Defect importdata workday exception
| | | | | | | |/
| | | | | | | * 0719f2e Merge branch 'hotfix-01' into 'oct20-dev-release'
| | | | | | |/|
| | | | | | | * a226119 (origin/hotfix-01, hotfix-01)
| | | | | | |/
| | | | | | * 1a14721 Comment-04 <======= Git merge-base commit
As you can see in your graph : somehow, branch
development
was not merged intointegration
development
is :which is not an ancestor of branch
integration
(there is no line going fromdevelopment
tointegration
).The last commit on
integration
mentions a merge :but it looks like this merge only brought a single commit (
c393837
) instead of the complete history ofdevelopment
.This is why you still have conflicts when merging
development
intointegration
.If you know for a fact that commit
3ae0efe
(the head ofintegration
) contains the full content ofdevelopment
merged intointegration
, you can create a fake merge commit to combine the histories.But that's for you to know, by inspecting the actual content of your repo : since the two branches are split,
git
does not know that.Otherwise : you will have to re-merge
development
intointegration
.[edit]
You're using gitlab, and you merge your MRs using the "squash & merge" option, correct ?