diff options
author | Gabriel Souza Franco <gabrielfrancosouza@gmail.com> | 2016-02-29 23:12:56 -0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-03-01 11:19:19 -0800 |
commit | 4a8d202c4e95472c7dc7444fd314037090cf08a1 (patch) | |
tree | e233328f2e547968a4a51ad5a138a94532252620 /t | |
parent | f02fbc4f9433937ee0463d0342d6d7d97e1f6f1e (diff) | |
download | git-4a8d202c4e95472c7dc7444fd314037090cf08a1.tar.gz |
fetch-pack: fix object_id of exact sha1
Commit 58f2ed0 (remote-curl: pass ref SHA-1 to fetch-pack as well,
2013-12-05) added support for specifying a SHA-1 as well as a ref name.
Add support for specifying just a SHA-1 and set the ref name to the same
value in this case.
Signed-off-by: Gabriel Souza Franco <gabrielfrancosouza@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5500-fetch-pack.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t5500-fetch-pack.sh b/t/t5500-fetch-pack.sh index e5f83bf5e4..9b9bec468a 100755 --- a/t/t5500-fetch-pack.sh +++ b/t/t5500-fetch-pack.sh @@ -531,6 +531,20 @@ test_expect_success 'shallow fetch with tags does not break the repository' ' git fsck ) ' + +test_expect_success 'fetch-pack can fetch a raw sha1' ' + git init hidden && + ( + cd hidden && + test_commit 1 && + test_commit 2 && + git update-ref refs/hidden/one HEAD^ && + git config transfer.hiderefs refs/hidden && + git config uploadpack.allowtipsha1inwant true + ) && + git fetch-pack hidden $(git -C hidden rev-parse refs/hidden/one) +' + check_prot_path () { cat >expected <<-EOF && Diag: url=$1 |