diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2015-10-06 15:18:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-07 10:47:50 -0700 |
commit | 786b150c8d0960cb7c36fb1cbbf70dbd76b586de (patch) | |
tree | 2667718cc3d6b6a1fc6a1c1fb06bb3e8daf7ef34 /t | |
parent | 38849a8116e690071c02eba0a8ef60a031a58080 (diff) | |
download | git-786b150c8d0960cb7c36fb1cbbf70dbd76b586de.tar.gz |
clone --dissociate: avoid locking pack filesjs/clone-dissociate
When `git clone` is asked to dissociate the repository from the
reference repository whose objects were used, it is quite possible that
the pack files need to be repacked. In that case, the pack files need to
be deleted that were originally hard-links to the reference repository's
pack files.
On platforms where a file cannot be deleted if another process still
holds a handle on it, we therefore need to take pains to release all
pack files and indexes before dissociating.
This fixes https://github.com/git-for-windows/git/issues/446
The test case to demonstrate the breakage technically does not need to
be run on Linux or MacOSX. It won't hurt, either, though.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t5700-clone-reference.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5700-clone-reference.sh b/t/t5700-clone-reference.sh index b6c056619c..057da59ae0 100755 --- a/t/t5700-clone-reference.sh +++ b/t/t5700-clone-reference.sh @@ -214,7 +214,7 @@ test_expect_success 'clone and dissociate from reference' ' test_must_fail git -C R fsck && git -C S fsck ' -test_expect_failure MINGW 'clone, dissociate from partial reference and repack' ' +test_expect_success 'clone, dissociate from partial reference and repack' ' rm -fr P Q R && git init P && ( |