about summary refs log tree commit diff
path: root/third_party/git/t/t6409-merge-subtree.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/t6409-merge-subtree.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/t6409-merge-subtree.sh')
-rwxr-xr-xthird_party/git/t/t6409-merge-subtree.sh152
1 files changed, 0 insertions, 152 deletions
diff --git a/third_party/git/t/t6409-merge-subtree.sh b/third_party/git/t/t6409-merge-subtree.sh
deleted file mode 100755
index b8e8b6f6429e..000000000000
--- a/third_party/git/t/t6409-merge-subtree.sh
+++ /dev/null
@@ -1,152 +0,0 @@
-#!/bin/sh
-
-test_description='subtree merge strategy'
-
-. ./test-lib.sh
-
-test_expect_success setup '
-
-	s="1 2 3 4 5 6 7 8" &&
-	for i in $s; do echo $i; done >hello &&
-	git add hello &&
-	git commit -m initial &&
-	git checkout -b side &&
-	echo >>hello world &&
-	git add hello &&
-	git commit -m second &&
-	git checkout master &&
-	for i in mundo $s; do echo $i; done >hello &&
-	git add hello &&
-	git commit -m master
-
-'
-
-test_expect_success 'subtree available and works like recursive' '
-
-	git merge -s subtree side &&
-	for i in mundo $s world; do echo $i; done >expect &&
-	test_cmp expect hello
-
-'
-
-test_expect_success 'setup branch sub' '
-	git checkout --orphan sub &&
-	git rm -rf . &&
-	test_commit foo
-'
-
-test_expect_success 'setup topic branch' '
-	git checkout -b topic master &&
-	git merge -s ours --no-commit --allow-unrelated-histories sub &&
-	git read-tree --prefix=dir/ -u sub &&
-	git commit -m "initial merge of sub into topic" &&
-	test_path_is_file dir/foo.t &&
-	test_path_is_file hello
-'
-
-test_expect_success 'update branch sub' '
-	git checkout sub &&
-	test_commit bar
-'
-
-test_expect_success 'update topic branch' '
-	git checkout topic &&
-	git merge -s subtree sub -m "second merge of sub into topic" &&
-	test_path_is_file dir/bar.t &&
-	test_path_is_file dir/foo.t &&
-	test_path_is_file hello
-'
-
-test_expect_success 'setup' '
-	mkdir git-gui &&
-	cd git-gui &&
-	git init &&
-	echo git-gui > git-gui.sh &&
-	o1=$(git hash-object git-gui.sh) &&
-	git add git-gui.sh &&
-	git commit -m "initial git-gui" &&
-	cd .. &&
-	mkdir git &&
-	cd git &&
-	git init &&
-	echo git >git.c &&
-	o2=$(git hash-object git.c) &&
-	git add git.c &&
-	git commit -m "initial git"
-'
-
-test_expect_success 'initial merge' '
-	git remote add -f gui ../git-gui &&
-	git merge -s ours --no-commit --allow-unrelated-histories gui/master &&
-	git read-tree --prefix=git-gui/ -u gui/master &&
-	git commit -m "Merge git-gui as our subdirectory" &&
-	git checkout -b work &&
-	git ls-files -s >actual &&
-	(
-		echo "100644 $o1 0	git-gui/git-gui.sh" &&
-		echo "100644 $o2 0	git.c"
-	) >expected &&
-	test_cmp expected actual
-'
-
-test_expect_success 'merge update' '
-	cd ../git-gui &&
-	echo git-gui2 > git-gui.sh &&
-	o3=$(git hash-object git-gui.sh) &&
-	git add git-gui.sh &&
-	git checkout -b topic_2 &&
-	git commit -m "update git-gui" &&
-	cd ../git &&
-	git pull -s subtree gui topic_2 &&
-	git ls-files -s >actual &&
-	(
-		echo "100644 $o3 0	git-gui/git-gui.sh" &&
-		echo "100644 $o2 0	git.c"
-	) >expected &&
-	test_cmp expected actual
-'
-
-test_expect_success 'initial ambiguous subtree' '
-	cd ../git &&
-	git reset --hard master &&
-	git checkout -b topic_2 &&
-	git merge -s ours --no-commit gui/master &&
-	git read-tree --prefix=git-gui2/ -u gui/master &&
-	git commit -m "Merge git-gui2 as our subdirectory" &&
-	git checkout -b work2 &&
-	git ls-files -s >actual &&
-	(
-		echo "100644 $o1 0	git-gui/git-gui.sh" &&
-		echo "100644 $o1 0	git-gui2/git-gui.sh" &&
-		echo "100644 $o2 0	git.c"
-	) >expected &&
-	test_cmp expected actual
-'
-
-test_expect_success 'merge using explicit' '
-	cd ../git &&
-	git reset --hard topic_2 &&
-	git pull -Xsubtree=git-gui gui topic_2 &&
-	git ls-files -s >actual &&
-	(
-		echo "100644 $o3 0	git-gui/git-gui.sh" &&
-		echo "100644 $o1 0	git-gui2/git-gui.sh" &&
-		echo "100644 $o2 0	git.c"
-	) >expected &&
-	test_cmp expected actual
-'
-
-test_expect_success 'merge2 using explicit' '
-	cd ../git &&
-	git reset --hard topic_2 &&
-	git pull -Xsubtree=git-gui2 gui topic_2 &&
-	git ls-files -s >actual &&
-	(
-		echo "100644 $o1 0	git-gui/git-gui.sh" &&
-		echo "100644 $o3 0	git-gui2/git-gui.sh" &&
-		echo "100644 $o2 0	git.c"
-	) >expected &&
-	test_cmp expected actual
-'
-
-test_done