about summary refs log tree commit diff
path: root/third_party/git/t/t3405-rebase-malformed.sh
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-21T10·03+0300
committerVincent Ambo <mail@tazj.in>2021-09-21T11·29+0300
commit43b1791ec601732ac31195df96781a848360a9ac (patch)
treedaae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/t3405-rebase-malformed.sh
parent2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (diff)
chore(3p/git): Unvendor git and track patches instead r/2903
This was vendored a long time ago under the expectation that keeping
it in sync with cgit would be easier this way, but it has proven not
to be a big issue.

On the other hand, a vendored copy of git is an annoying maintenance
burden. It is much easier to rebase the single (dottime) patch that we
have.

This removes the vendored copy of git and instead passes the git
source code to cgit via `pkgs.srcOnly`, which includes the applied
patch so that cgit can continue rendering dottime.

Change-Id: If31f62dea7ce688fd1b9050204e9378019775f2b
Diffstat (limited to 'third_party/git/t/t3405-rebase-malformed.sh')
-rwxr-xr-xthird_party/git/t/t3405-rebase-malformed.sh90
1 files changed, 0 insertions, 90 deletions
diff --git a/third_party/git/t/t3405-rebase-malformed.sh b/third_party/git/t/t3405-rebase-malformed.sh
deleted file mode 100755
index 860e63e444d2..000000000000
--- a/third_party/git/t/t3405-rebase-malformed.sh
+++ /dev/null
@@ -1,90 +0,0 @@
-#!/bin/sh
-
-test_description='rebase should handle arbitrary git message'
-
-. ./test-lib.sh
-. "$TEST_DIRECTORY"/lib-rebase.sh
-
-cat >F <<\EOF
-This is an example of a commit log message
-that does not  conform to git commit convention.
-
-It has two paragraphs, but its first paragraph is not friendly
-to oneline summary format.
-EOF
-
-cat >G <<\EOF
-commit log message containing a diff
-EOF
-
-
-test_expect_success setup '
-
-	>file1 &&
-	>file2 &&
-	git add file1 file2 &&
-	test_tick &&
-	git commit -m "Initial commit" &&
-	git branch diff-in-message &&
-	git branch empty-message-merge &&
-
-	git checkout -b multi-line-subject &&
-	cat F >file2 &&
-	git add file2 &&
-	test_tick &&
-	git commit -F F &&
-
-	git cat-file commit HEAD | sed -e "1,/^\$/d" >F0 &&
-
-	git checkout diff-in-message &&
-	echo "commit log message containing a diff" >G &&
-	echo "" >>G &&
-	cat G >file2 &&
-	git add file2 &&
-	git diff --cached >>G &&
-	test_tick &&
-	git commit -F G &&
-
-	git cat-file commit HEAD | sed -e "1,/^\$/d" >G0 &&
-
-	git checkout empty-message-merge &&
-	echo file3 >file3 &&
-	git add file3 &&
-	git commit --allow-empty-message -m "" &&
-
-	git checkout master &&
-
-	echo One >file1 &&
-	test_tick &&
-	git add file1 &&
-	git commit -m "Second commit"
-'
-
-test_expect_success 'rebase commit with multi-line subject' '
-
-	git rebase master multi-line-subject &&
-	git cat-file commit HEAD | sed -e "1,/^\$/d" >F1 &&
-
-	test_cmp F0 F1 &&
-	test_cmp F F0
-'
-
-test_expect_success 'rebase commit with diff in message' '
-	git rebase master diff-in-message &&
-	git cat-file commit HEAD | sed -e "1,/^$/d" >G1 &&
-	test_cmp G0 G1 &&
-	test_cmp G G0
-'
-
-test_expect_success 'rebase -m commit with empty message' '
-	git rebase -m master empty-message-merge
-'
-
-test_expect_success 'rebase -i commit with empty message' '
-	git checkout diff-in-message &&
-	set_fake_editor &&
-	test_must_fail env FAKE_COMMIT_MESSAGE=" " FAKE_LINES="reword 1" \
-		git rebase -i HEAD^
-'
-
-test_done