summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fabb019)
raw | patch | inline | side by side (parent: fabb019)
author | Johan Herland <johan@herland.net> | |
Thu, 22 May 2008 22:03:00 +0000 (18:03 -0400) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 23 May 2008 06:35:23 +0000 (23:35 -0700) |
The first test in this series tests "git clone -l -s --reference B A C",
where repo B is a superset of repo A (A has one commit, B has the same
commit plus another). In this case, all objects to be cloned are already
present in B.
However, we should also test the case where the "--reference" repo is a
_subset_ of the source repo (e.g. "git clone -l -s --reference A B C"),
i.e. some objects are not available in the "--reference" repo, and will
have to be found in the source repo.
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
where repo B is a superset of repo A (A has one commit, B has the same
commit plus another). In this case, all objects to be cloned are already
present in B.
However, we should also test the case where the "--reference" repo is a
_subset_ of the source repo (e.g. "git clone -l -s --reference A B C"),
i.e. some objects are not available in the "--reference" repo, and will
have to be found in the source repo.
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5700-clone-reference.sh | patch | blob | history |
index b53c3ff956ed65242b3925810550f6eb051254d9..0112c218e0ebcd67fede154f59a82a1a5b6a4aec 100755 (executable)
cd "$base_dir"
+test_expect_success 'cloning with reference being subset of source (-l -s)' \
+'git clone -l -s --reference A B E'
+
+cd "$base_dir"
+
test_done