I try to whole day resolve the trouble: When i try to pull or clone exists repository in empty directory, i got error:
$ git clone https://bitbucket.org/path_to_repo/aroma
Cloning into 'aroma'...
remote: Counting objects: 1335, done.
remote: Compressing objects: 100% (1174/1174), done.
remote: Total 1335 (delta 618), rReecused 551 (deltea 72)
Receiving objects: 100% (1335/1335), 43.16 MiB | 3.78 MiB/s, done.
Resolving deltas: 100% (618/618), done.
fatal: fsync error on 'H:/Project/testrep/aroma/.git/objects/pack/tmp_pack_xqHCKb': Bad file descriptor
fatal: index-pack failed
I tried set pack.windowMemory size and pack.packSizeLimit in config and more. The same error ;[ Before I could to clone repositories. But something went wrong
fsync()
operation ensures that file data are successfully written to stable storage (see pubs.opengroup.org/onlinepubs/9699919799/functions/fsync.html or the earlier pubs.opengroup.org/onlinepubs/9699919799/functions/fsync.html). Failure implies that the file system is no longer functioning, i.e., your H: drive is broken. – SimpletonH:
drive) is fine, then the "broken" part must logically have something to do with the client and/or the client's connection to the server. – Simpleton