Skip to content

Commit 66e485f

Browse files
committed
Not edit message on next command
1 parent 390735b commit 66e485f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ function addStepNavigationCommand(){
172172
git add -A
173173
git commit -m "Abort test"
174174
git checkout -b ${workshopBranch}-${tag} ${tag}
175-
git merge ${tag}-test1 > /dev/null
175+
git merge --no-edit ${tag}-test1 > /dev/null
176176
git checkout --ours .
177177
git add .
178178
git commit -m "Merge with test branch"
@@ -267,7 +267,7 @@ function addNavigationCommand(){
267267
268268
git add -A
269269
git commit -m "Resolve test"
270-
git merge $tag
270+
git merge --no-edit $tag
271271
EOF
272272

273273
if [ $testNum -eq 1 ]

run.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ PowerShell -ExecutionPolicy Bypass -File @@scriptname@@.ps1
1515
$nextCommandTemplate = @"
1616
git add -A
1717
git commit -m "Resolve test"
18-
git merge @@nexttag@@
18+
git merge --no-edit @@nexttag@@
1919
"@
2020

2121
$jumpToNextStepCommandTemplate = @"
2222
git add -A
2323
git commit -m "Abort test"
2424
git checkout -b $workshopBranch-@@nexttag@@ @@nexttag@@
25-
git merge @@nexttag@@-test1 *> `$null`
25+
git merge --no-edit @@nexttag@@-test1 *> `$null`
2626
git checkout --ours .
2727
git add .
2828
git commit -m "Merge with test branch"

0 commit comments

Comments
 (0)