File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22All 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.
Original file line number Diff line number Diff line change @@ -11,13 +11,16 @@ destination branch `{{ wbranch.dst_branch.name }}`.
1111
1212Please 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 -%}
You can’t perform that action at this time.
0 commit comments