From 43b1791ec601732ac31195df96781a848360a9ac Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 21 Sep 2021 13:03:01 +0300 Subject: chore(3p/git): Unvendor git and track patches instead 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 --- third_party/git/t/t3512-cherry-pick-submodule.sh | 48 ------------------------ 1 file changed, 48 deletions(-) delete mode 100755 third_party/git/t/t3512-cherry-pick-submodule.sh (limited to 'third_party/git/t/t3512-cherry-pick-submodule.sh') diff --git a/third_party/git/t/t3512-cherry-pick-submodule.sh b/third_party/git/t/t3512-cherry-pick-submodule.sh deleted file mode 100755 index 6ece1d85736a..000000000000 --- a/third_party/git/t/t3512-cherry-pick-submodule.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh - -test_description='cherry-pick can handle submodules' - -. ./test-lib.sh -. "$TEST_DIRECTORY"/lib-submodule-update.sh - -KNOWN_FAILURE_NOFF_MERGE_DOESNT_CREATE_EMPTY_SUBMODULE_DIR=1 -KNOWN_FAILURE_NOFF_MERGE_ATTEMPTS_TO_MERGE_REMOVED_SUBMODULE_FILES=1 -test_submodule_switch "cherry-pick" - -test_expect_success 'unrelated submodule/file conflict is ignored' ' - test_create_repo sub && - - touch sub/file && - git -C sub add file && - git -C sub commit -m "add a file in a submodule" && - - test_create_repo a_repo && - ( - cd a_repo && - >a_file && - git add a_file && - git commit -m "add a file" && - - git branch test && - git checkout test && - - mkdir sub && - >sub/content && - git add sub/content && - git commit -m "add a regular folder with name sub" && - - echo "123" >a_file && - git add a_file && - git commit -m "modify a file" && - - git checkout master && - - git submodule add ../sub sub && - git submodule update sub && - git commit -m "add a submodule info folder with name sub" && - - git cherry-pick test - ) -' - -test_done -- cgit 1.4.1