File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ function addStepNavigationCommand(){
172172git add -A
173173git commit -m "Abort test"
174174git checkout -b ${workshopBranch} -${tag} ${tag}
175- git merge ${tag} -test1 > /dev/null
175+ git merge --no-edit ${tag} -test1 > /dev/null
176176git checkout --ours .
177177git add .
178178git commit -m "Merge with test branch"
@@ -267,7 +267,7 @@ function addNavigationCommand(){
267267
268268git add -A
269269git commit -m "Resolve test"
270- git merge $tag
270+ git merge --no-edit $tag
271271EOF
272272
273273 if [ $testNum -eq 1 ]
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ PowerShell -ExecutionPolicy Bypass -File @@scriptname@@.ps1
1515$nextCommandTemplate = @"
1616git add -A
1717git commit -m "Resolve test"
18- git merge @@nexttag@@
18+ git merge --no-edit @@nexttag@@
1919"@
2020
2121$jumpToNextStepCommandTemplate = @"
2222git add -A
2323git commit -m "Abort test"
2424git checkout -b $workshopBranch -@@nexttag@@ @@nexttag@@
25- git merge @@nexttag@@-test1 *> `$ null`
25+ git merge --no-edit @@nexttag@@-test1 *> `$ null`
2626git checkout --ours .
2727git add .
2828git commit -m "Merge with test branch"
You can’t perform that action at this time.
0 commit comments