Thank you for filling out a Git bug report! Please answer the following questions to help us understand your issue. What did you do before the bug happened? (Steps to reproduce your issue) I ran git clone --shallow-since="1548454011" "https://github.com/abseil/abseil-cpp" to produce a shallow clone of abseil-cpp.git, with the aim of going deep enough to grab commit `5e0dcf72c64fae912184d2e0de87195fe8f0a425`, which I know to have a commit date of `1548454011`. What did you expect to happen? (Expected behavior) - I expected the command to produce a valid shallow git clone. - I further expected the repository to include commit 5e0dcf72c64fae912184d2e0de87195fe8f0a425, which has a commit date <= the provided `--shallow`, as do all of its descendants up to the `master` branch What happened instead? (Actual behavior) - The clone command produced an inconsistent shallow clone. In the repository I see: $ cat .git/shallow 5e0dcf72c64fae912184d2e0de87195fe8f0a425 89ea0c5ff34aaa5855cfc7aa41f323b8a0ef0ede But commit `5e0dcf72c64fae912184d2e0de87195fe8f0a425` is missing. An attempt to `git fetch --unshallow` errors out, because the server sends an `unshallow 5e0dcf72c64fae912184d2e0de87195fe8f0a425`, which we are unable to execute since we're missing that object. That object is also the specific one I mentioned above that I wanted. What's different between what you expected and what actually happened? Anything else you want to add: The problem here is triggered by passing a `shallow-since` that lies *between* the first and and second parents of a merge commit that itself is on the first-parent spine. If we examine the relevant portion of `abseil-cpp.git`'s history, we find: $ git --no-pager log --format='%h %ct' --graph 89ea0c5ff34aaa5855cfc7aa41f323b8a0ef0ede~6..89ea0c5ff34aaa5855cfc7aa41f323b8a0ef0ede * 89ea0c5 1548698816 # WANT |\ | * 7ec3270 1548194022 # WANT * | 5e0dcf7 1548454011 # WANT * | 0dffca4 1548346230 # DON'T WANT * | 6b4201f 1548261751 # DON'T WANT |/ * 0b1e6d4 1547838308 # DON'T WANT * efccc50 1547753737 # DON'T WANT I've annotated the commits with WANT or DON'T WONT based on whether or not their commit time is included by the `--shallow-since` filter. What is happening, I believe, is that we are marking 89ea0c5 as shallow, since its first parent is unwanted. However, marking it shallow causes pack generation to ignore _all_ of its parents, including 7ec3270, which we _do_ want. This results in the inconsistent state where we mark `5e0dcf7` as shallow (and send the `shallow` line), but don't send the actual object. It's unfortunately a bit unclear to me what _should_ happen here. We really want a way to mark `89ea0c5` as "partially-shallow", and send its second parent, but not its first parent, but shallowness is a property of an entire commit, not of a specific commit/parent relationship. However, it'd be nice if we at least ended up with a consistent state, instead of with a repository with invalid `shallow` marks. Please review the rest of the bug report below. You can delete any lines you don't wish to share. [System Info] git version: git version 2.28.0.461.g40977abb40 cpu: x86_64 built from commit: 40977abb4059c11004726852a79df64f4553944d sizeof-long: 8 sizeof-size_t: 8 shell-path: /bin/sh uname: Linux 5.4.0-42-generic #46-Ubuntu SMP Fri Jul 10 00:24:02 UTC 2020 x86_64 compiler info: gnuc: 9.3 libc info: glibc: 2.31 $SHELL (typically, interactive shell): /bin/bash [Enabled Hooks] - Nelson Elhage