diff options
author | Vincent Ambo <mail@tazj.in> | 2021-09-21T10·03+0300 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-09-21T11·29+0300 |
commit | 43b1791ec601732ac31195df96781a848360a9ac (patch) | |
tree | daae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/t4057-diff-combined-paths.sh | |
parent | 2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (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/t4057-diff-combined-paths.sh')
-rwxr-xr-x | third_party/git/t/t4057-diff-combined-paths.sh | 106 |
1 files changed, 0 insertions, 106 deletions
diff --git a/third_party/git/t/t4057-diff-combined-paths.sh b/third_party/git/t/t4057-diff-combined-paths.sh deleted file mode 100755 index 0b78573733b3..000000000000 --- a/third_party/git/t/t4057-diff-combined-paths.sh +++ /dev/null @@ -1,106 +0,0 @@ -#!/bin/sh - -test_description='combined diff show only paths that are different to all parents' - -. ./test-lib.sh - -# verify that diffc.expect matches output of -# $(git diff -c --name-only HEAD HEAD^ HEAD^2) -diffc_verify () { - git diff -c --name-only HEAD HEAD^ HEAD^2 >diffc.actual && - test_cmp diffc.expect diffc.actual -} - -test_expect_success 'trivial merge - combine-diff empty' ' - for i in $(test_seq 1 9) - do - echo $i >$i.txt && - git add $i.txt - done && - git commit -m "init" && - git checkout -b side && - for i in $(test_seq 2 9) - do - echo $i/2 >>$i.txt - done && - git commit -a -m "side 2-9" && - git checkout master && - echo 1/2 >1.txt && - git commit -a -m "master 1" && - git merge side && - >diffc.expect && - diffc_verify -' - - -test_expect_success 'only one truly conflicting path' ' - git checkout side && - for i in $(test_seq 2 9) - do - echo $i/3 >>$i.txt - done && - echo "4side" >>4.txt && - git commit -a -m "side 2-9 +4" && - git checkout master && - for i in $(test_seq 1 9) - do - echo $i/3 >>$i.txt - done && - echo "4master" >>4.txt && - git commit -a -m "master 1-9 +4" && - test_must_fail git merge side && - cat <<-\EOF >4.txt && - 4 - 4/2 - 4/3 - 4master - 4side - EOF - git add 4.txt && - git commit -m "merge side (2)" && - echo 4.txt >diffc.expect && - diffc_verify -' - -test_expect_success 'merge introduces new file' ' - git checkout side && - for i in $(test_seq 5 9) - do - echo $i/4 >>$i.txt - done && - git commit -a -m "side 5-9" && - git checkout master && - for i in $(test_seq 1 3) - do - echo $i/4 >>$i.txt - done && - git commit -a -m "master 1-3 +4hello" && - git merge side && - echo "Hello World" >4hello.txt && - git add 4hello.txt && - git commit --amend && - echo 4hello.txt >diffc.expect && - diffc_verify -' - -test_expect_success 'merge removed a file' ' - git checkout side && - for i in $(test_seq 5 9) - do - echo $i/5 >>$i.txt - done && - git commit -a -m "side 5-9" && - git checkout master && - for i in $(test_seq 1 3) - do - echo $i/4 >>$i.txt - done && - git commit -a -m "master 1-3" && - git merge side && - git rm 4.txt && - git commit --amend && - echo 4.txt >diffc.expect && - diffc_verify -' - -test_done |