Re: Bug: fetch with deepen shortens history

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Jul 25, 2023 at 12:03:31AM +0000, Benjamin Stein wrote:
> > 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.

(also Cc: Junio and Taylor.)

I think in most cases, people doing shallow clones for testing mainline
branch of whatever project they're hacking. If at some later date they
wish to deepen their clones, they can do that up to specified date:

```
$ git clone <clone url> project && cd project
(hack, hack, hack)
$ git checkout main
$ git fetch --shallow-since=2023-01-01 && git repack -A -d
```

I often use this method when cloning quite large repos when I'm on mobile
data (via WiFi tethering) due to bandwidth limitation.

> 
> 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
> 

Thanks for the script that you provided.

-- 
An old man doll... just what I always wanted! - Clara

Attachment: signature.asc
Description: PGP signature


[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux