Skip to content

Commit 46aff54

Browse files
committed
feature: BERTE-548 Split conflict resolution steps
1 parent 45adce6 commit 46aff54

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [3.6.2] - 2021-06-24
5+
# Changed
6+
- Conflict resolution steps split to allow direct copy and paste
7+
48
## [3.6.1] - 2021-05-26
59
# Fixed
610
- API call error was returning to much information, now it return only action results.

bert_e/templates/conflict.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ destination branch `{{ wbranch.dst_branch.name }}`.
1111

1212
Please resolve the conflict on **the feature branch** (`{{ feature_branch.name }}`).
1313

14-
```bash
15-
$ git fetch
16-
$ git checkout origin/{{ feature_branch.name }}
17-
$ git merge origin/{{ dev_branch.name }}
18-
$ # <intense conflict resolution>
19-
$ git commit
20-
$ git push origin HEAD:{{ feature_branch.name }}
14+
```sh
15+
git fetch && \
16+
git checkout origin/{{ feature_branch.name }} && \
17+
git merge origin/{{ dev_branch.name }}
18+
```
19+
20+
Resolve merge conflicts and commit
21+
22+
```sh
23+
git push origin HEAD:{{ feature_branch.name }}
2124
```
2225

2326
{% if source.name == dev_branch.name -%}

0 commit comments

Comments
 (0)