Improve detail of resolve conflict docs
This commit is contained in:
parent
af1ed0e2bb
commit
1b7ecba0c4
2 changed files with 25 additions and 11 deletions
Binary file not shown.
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 8.7 KiB |
|
@ -1,15 +1,31 @@
|
||||||
# Merge conflict resolution
|
# Merge request conflict resolution
|
||||||
|
|
||||||
> [Introduced][ce-5479] in GitLab 8.11.
|
Merge conflicts occur when two branches have different changes that cannot be
|
||||||
|
merged automatically.
|
||||||
|
|
||||||
When a merge request has conflicts, GitLab may provide the option to resolve
|
Git is able to automatically merge changes between branches in most cases, but
|
||||||
those conflicts in the GitLab UI. (See
|
there are situations where Git will require your assistance to resolve the
|
||||||
[conflicts available for resolution](#conflicts-available-for-resolution) for
|
conflicts manually. Typically, this is necessary when people change the same
|
||||||
more information on when this is available.) If this is an option, you will see
|
parts of the same files.
|
||||||
a **resolve these conflicts** link in the merge request widget:
|
|
||||||
|
GitLab will prevent merge requests from being merged until all conflicts are
|
||||||
|
resolved. Conflicts can be resolved locally, or in many cases within GitLab
|
||||||
|
(see [conflicts available for resolution](#conflicts-available-for-resolution)
|
||||||
|
for information on when this is available).
|
||||||
|
|
||||||
![Merge request widget](img/merge_request_widget.png)
|
![Merge request widget](img/merge_request_widget.png)
|
||||||
|
|
||||||
|
NOTE: **Note:**
|
||||||
|
GitLab resolves conflicts by creating a merge commit in the source branch that
|
||||||
|
is not automatically merged into the target branch. This allows the merge
|
||||||
|
commit to be reviewed and tested before the changes are merged, preventing
|
||||||
|
unintended changes entering the target branch without review or breaking the
|
||||||
|
build.
|
||||||
|
|
||||||
|
## Resolve conflicts: interactive mode
|
||||||
|
|
||||||
|
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5479) in GitLab 8.11.
|
||||||
|
|
||||||
Clicking this will show a list of files with conflicts, with conflict sections
|
Clicking this will show a list of files with conflicts, with conflict sections
|
||||||
highlighted:
|
highlighted:
|
||||||
|
|
||||||
|
@ -21,9 +37,9 @@ request into the source branch, resolving the conflicts using the options
|
||||||
chosen. If the source branch is `feature` and the target branch is `master`,
|
chosen. If the source branch is `feature` and the target branch is `master`,
|
||||||
this is similar to performing `git checkout feature; git merge master` locally.
|
this is similar to performing `git checkout feature; git merge master` locally.
|
||||||
|
|
||||||
## Merge conflict editor
|
## Resolve conflicts: inline editor
|
||||||
|
|
||||||
> Introduced in GitLab 8.13.
|
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6374) in GitLab 8.13.
|
||||||
|
|
||||||
The merge conflict resolution editor allows for more complex merge conflicts,
|
The merge conflict resolution editor allows for more complex merge conflicts,
|
||||||
which require the user to manually modify a file in order to resolve a conflict,
|
which require the user to manually modify a file in order to resolve a conflict,
|
||||||
|
@ -50,5 +66,3 @@ Additionally, GitLab does not detect conflicts in renames away from a path. For
|
||||||
example, this will not create a conflict: on branch `a`, doing `git mv file1
|
example, this will not create a conflict: on branch `a`, doing `git mv file1
|
||||||
file2`; on branch `b`, doing `git mv file1 file3`. Instead, both files will be
|
file2`; on branch `b`, doing `git mv file1 file3`. Instead, both files will be
|
||||||
present in the branch after the merge request is merged.
|
present in the branch after the merge request is merged.
|
||||||
|
|
||||||
[ce-5479]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5479
|
|
||||||
|
|
Loading…
Reference in a new issue