> Hello git gurus, > Here's an atypical bug report for you. I'm sorry for not starting with the template, but the context/setup are longer > than felt useful in that format. > > I have what I believe to be a (relatively) simple, reproducible test case (repo setup/steps below) around shallow > checkouts at merge commits and deepening where the behavior is quite surprising - I end up with a smaller history > after a fetch operation than when I started! > > [...snip...] Hello again. It's been a month, and I didn't even get a "yes, we tested this and confirm the problem", so I thought I'd check in on this. I also found a commit setup where even my "working" solution steps (only using deepen) still ends up with the unexpected behavior, so I thought I'd add that in here as a simpler scenario to experiment with. It happens when both sides of the merge are the same number of commits to the merge base. Let me know if there's any additional information I can provide or something I can do to help resolve. Thanks, Benji ---------simple-bug-setup.sh--------- set -x # Setup working folder for easy cleanup mkdir git-test && cd git-test # Setup repo mkdir source-repo && cd source-repo git init git branch -m trunk for i in {01..05}; do echo "start${i}" >> start; git add start; git commit -m "start${i}"; done git branch old-checkpoint for i in {01..10}; do echo "new${i}" >> new; git add new; git commit -m "new${i}"; done git checkout -b feature HEAD~4 for i in {01..03}; do echo "feature${i}" >> feature; git add feature; git commit -m "feature${i}"; done git checkout trunk git merge --no-edit feature cd .. sleep 1 # simple checkout git clone --no-local source-repo --depth=1 --branch trunk shallow-clone-only-deepen cd shallow-clone-only-deepen git remote set-branches --add origin '*' git fetch --deepen=4 origin HEAD feature # this also works if we use feature git fetch origin --shallow-exclude=old-checkpoint feature git log --oneline origin/feature | wc -l # 9, expected git fetch --deepen=1 origin feature git log --oneline origin/feature | wc -l # 4, unexpected cd .. sleep 1