Skip to content

Commit 8b214c2

Browse files
committed
clone: propagate object-format when cloning from void
A user could prepare an empty repository and set it to use SHA256 as the object format. The new repository created by "git clone" from such a repository however would not record that it is expecting objects in the same SHA256 format. This works as expected if the source repository is not empty. Just like we started copying the name of the primary branch from the remote repository even if it is unborn in 3d8314f (clone: propagate empty remote HEAD even with other branches, 2022-07-07), lift the code that records the object format out of the block executed only when cloning from an instantiated repository, so that it works also when cloning from an empty repository. Signed-off-by: Junio C Hamano <[email protected]>
1 parent ae73b2c commit 8b214c2

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

builtin/clone.c

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -910,6 +910,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
910910
int err = 0, complete_refs_before_fetch = 1;
911911
int submodule_progress;
912912
int filter_submodules = 0;
913+
int hash_algo;
913914

914915
struct transport_ls_refs_options transport_ls_refs_options =
915916
TRANSPORT_LS_REFS_OPTIONS_INIT;
@@ -1298,15 +1299,15 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
12981299
}
12991300
}
13001301

1301-
if (mapped_refs) {
1302-
int hash_algo = hash_algo_by_ptr(transport_get_hash_algo(transport));
1303-
13041302
/*
13051303
* Now that we know what algorithm the remote side is using,
13061304
* let's set ours to the same thing.
13071305
*/
1308-
initialize_repository_version(hash_algo, 1);
1309-
repo_set_hash_algo(the_repository, hash_algo);
1306+
hash_algo = hash_algo_by_ptr(transport_get_hash_algo(transport));
1307+
initialize_repository_version(hash_algo, 1);
1308+
repo_set_hash_algo(the_repository, hash_algo);
1309+
1310+
if (mapped_refs) {
13101311
/*
13111312
* transport_get_remote_refs() may return refs with null sha-1
13121313
* in mapped_refs (see struct transport->get_refs_list

t/t5702-protocol-v2.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,17 @@ test_expect_success 'clone propagates unborn HEAD from non-empty repo' '
269269
grep "warning: remote HEAD refers to nonexistent ref" stderr
270270
'
271271

272+
test_expect_success 'clone propagates object-format from empty repo' '
273+
test_when_finished "rm -fr src256 dst256" &&
274+
275+
echo sha256 >expect &&
276+
git init --object-format=sha256 src256 &&
277+
git clone src256 dst256 &&
278+
git -C dst256 rev-parse --show-object-format >actual &&
279+
280+
test_cmp expect actual
281+
'
282+
272283
test_expect_success 'bare clone propagates unborn HEAD from non-empty repo' '
273284
test_when_finished "rm -rf file_unborn_parent file_unborn_child.git" &&
274285

0 commit comments

Comments
 (0)