mergeq 0.0.1111 → 0.0.1113
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/mergeq.sh +3 -1
- data/lib/mergeq/version.rb +1 -1
- metadata +1 -1
data/bin/mergeq.sh
CHANGED
@@ -96,7 +96,9 @@ function push_to_merge_branch {
|
|
96
96
|
status "Merging into $merge_branch"
|
97
97
|
git fetch origin $merge_branch
|
98
98
|
git checkout -q FETCH_HEAD
|
99
|
-
git merge --no-ff --no-commit $current
|
99
|
+
git merge --no-ff -s ours --no-commit $current
|
100
|
+
# make the merge branch match exactly before committing the merge
|
101
|
+
# we do this so that bundle install will work when upgrading mergeq (ew)
|
100
102
|
git checkout $current -- .
|
101
103
|
echo $current > .merge
|
102
104
|
git add .
|
data/lib/mergeq/version.rb
CHANGED