== fsck-ing your Git objects by default Yo developers (git interactive users), check if you are fsck-ing your objects on transfer: git config --null --get transfer.fsckobjects git config --null --get fetch.fsckobjects If that is null or false, then ... set it to true: git config --global transfer.fsckobjects true git config --global fetch.fsckobjects true Administrators of git repositories you might want to check and setup your git repos on your servers by setting `receive.fsckobjects` to `true`: # for each git repo on the server git config --local receive.fsckobjects true Cheers. === References * link:https://github.com/git/git/blob/d10e2cb9d0299a26f43d57dd5bdcf2b3f86a30b3/Documentation/config.txt#L1156-L1161[git config fetch.fsckobjects] * link:https://github.com/git/git/blob/d10e2cb9d0299a26f43d57dd5bdcf2b3f86a30b3/Documentation/config.txt#L2322-L2327[git config receive.fsckobjects] * link:https://github.com/git/git/blob/d10e2cb9d0299a26f43d57dd5bdcf2b3f86a30b3/Documentation/config.txt#L2691-L2694[git config transfer.fsckobjects]