]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t7502-commit-porcelain.sh
commit: pass --no-divider to interpret-trailers
[thirdparty/git.git] / t / t7502-commit-porcelain.sh
index 38a532d81ccd060d7c42e1a3f413bdfeccf4715b..b5bf7de7cd66c781657173bac3074cacb1107bf1 100755 (executable)
@@ -466,6 +466,25 @@ test_expect_success 'commit --trailer with -c and command' '
        test_cmp expected actual
 '
 
+test_expect_success 'commit --trailer not confused by --- separator' '
+       cat >msg <<-\EOF &&
+       subject
+
+       body with dashes
+       ---
+       in it
+       EOF
+       git commit --allow-empty --trailer="my-trailer: value" -F msg &&
+       {
+               cat msg &&
+               echo &&
+               echo "my-trailer: value"
+       } >expected &&
+       git cat-file commit HEAD >commit.msg &&
+       sed -e "1,/^\$/d" commit.msg >actual &&
+       test_cmp expected actual
+'
+
 test_expect_success 'multiple -m' '
 
        >negative &&