We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b1a799e + b65229c commit a16f0bdCopy full SHA for a16f0bd
README.md
@@ -1,5 +1,5 @@
1
---
2
-Version: 0.5.0
+Version: 0.5.1
3
4
5
# Example - CII 100%
scripts/release/release-prep-upmerge.sh
@@ -1,6 +1,7 @@
#! /bin/bash
-set -eu
+# cannot do `set -e` here as we expect an conflict error during the merge
+set -u
6
git checkout develop;
7
@@ -9,7 +10,7 @@ git checkout develop;
9
10
11
# upmerge from branch input
12
git pull;
-git merge "$1" 2>/dev/null; # ignore error we expect here
13
+git merge "$1";
14
15
# TODO: Resolve conflicts better (maybe https://github.com/jakub-g/git-resolve-conflict)
16
git reset README.md;
0 commit comments