about summary refs log tree commit diff
path: root/third_party/git/t/t4064-diff-oidfind.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/t4064-diff-oidfind.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/t4064-diff-oidfind.sh')
-rwxr-xr-xthird_party/git/t/t4064-diff-oidfind.sh123
1 files changed, 0 insertions, 123 deletions
diff --git a/third_party/git/t/t4064-diff-oidfind.sh b/third_party/git/t/t4064-diff-oidfind.sh
deleted file mode 100755
index 6d8c8986fc71..000000000000
--- a/third_party/git/t/t4064-diff-oidfind.sh
+++ /dev/null
@@ -1,123 +0,0 @@
-#!/bin/sh
-
-test_description='test finding specific blobs in the revision walking'
-. ./test-lib.sh
-
-test_expect_success 'setup ' '
-	git commit --allow-empty -m "empty initial commit" &&
-
-	echo "Hello, world!" >greeting &&
-	git add greeting &&
-	git commit -m "add the greeting blob" && # borrowed from Git from the Bottom Up
-	git tag -m "the blob" greeting $(git rev-parse HEAD:greeting) &&
-
-	echo asdf >unrelated &&
-	git add unrelated &&
-	git commit -m "unrelated history" &&
-
-	git revert HEAD^ &&
-
-	git commit --allow-empty -m "another unrelated commit"
-'
-
-test_expect_success 'find the greeting blob' '
-	cat >expect <<-EOF &&
-	Revert "add the greeting blob"
-	add the greeting blob
-	EOF
-
-	git log --format=%s --find-object=greeting^{blob} >actual &&
-
-	test_cmp expect actual
-'
-
-test_expect_success 'setup a tree' '
-	mkdir a &&
-	echo asdf >a/file &&
-	git add a/file &&
-	git commit -m "add a file in a subdirectory"
-'
-
-test_expect_success 'find a tree' '
-	cat >expect <<-EOF &&
-	add a file in a subdirectory
-	EOF
-
-	git log --format=%s -t --find-object=HEAD:a >actual &&
-
-	test_cmp expect actual
-'
-
-test_expect_success 'setup a submodule' '
-	test_create_repo sub &&
-	test_commit -C sub sub &&
-	git submodule add ./sub sub &&
-	git commit -a -m "add sub"
-'
-
-test_expect_success 'find a submodule' '
-	cat >expect <<-EOF &&
-	add sub
-	EOF
-
-	git log --format=%s --find-object=HEAD:sub >actual &&
-
-	test_cmp expect actual
-'
-
-test_expect_success 'set up merge tests' '
-	test_commit base &&
-
-	git checkout -b boring base^ &&
-	echo boring >file &&
-	git add file &&
-	git commit -m boring &&
-
-	git checkout -b interesting base^ &&
-	echo interesting >file &&
-	git add file &&
-	git commit -m interesting &&
-
-	blob=$(git rev-parse interesting:file)
-'
-
-test_expect_success 'detect merge which introduces blob' '
-	git checkout -B merge base &&
-	git merge --no-commit boring &&
-	echo interesting >file &&
-	git commit -am "introduce blob" &&
-	git diff-tree --format=%s --find-object=$blob -c --name-status HEAD >actual &&
-	cat >expect <<-\EOF &&
-	introduce blob
-
-	AM	file
-	EOF
-	test_cmp expect actual
-'
-
-test_expect_success 'detect merge which removes blob' '
-	git checkout -B merge interesting &&
-	git merge --no-commit base &&
-	echo boring >file &&
-	git commit -am "remove blob" &&
-	git diff-tree --format=%s --find-object=$blob -c --name-status HEAD >actual &&
-	cat >expect <<-\EOF &&
-	remove blob
-
-	MA	file
-	EOF
-	test_cmp expect actual
-'
-
-test_expect_success 'do not detect merge that does not touch blob' '
-	git checkout -B merge interesting &&
-	git merge -m "untouched blob" base &&
-	git diff-tree --format=%s --find-object=$blob -c --name-status HEAD >actual &&
-	cat >expect <<-\EOF &&
-	untouched blob
-
-	EOF
-	test_cmp expect actual
-'
-
-test_done