git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Fetching too many tags?
@ 2023-08-10  6:08 Ronan Pigott
  2023-08-11 18:09 ` Jeff King
  2023-08-11 22:06 ` Ronan Pigott
  0 siblings, 2 replies; 5+ messages in thread
From: Ronan Pigott @ 2023-08-10  6:08 UTC (permalink / raw)
  To: git

Hey git,

I am interested in git performance today and can't figure out what's going on
here. I was wondering why my git-fetch might be slow in an up-to-date repo:

  $ git pull
  Already up to date.
  $ time git fetch origin master
  From https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux
   * branch                      master     -> FETCH_HEAD
  git fetch origin master  0.13s user 0.06s system 10% cpu 1.705 total

GIT_TRACE_CURL shows it spends most of the time transfering (all) tags from the
remote. It's much faster with --no-tags:

  $ time git fetch -n origin master
  From https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux
   * branch                      master     -> FETCH_HEAD
  git fetch -n origin master  0.11s user 0.03s system 36% cpu 0.383 total

But I don't have tagOpt set:

  $ git config remote.origin.tagOpt || echo $?
  1

And the remote doesn't have to send me any commits, so I don't see why I should
receive any tags at all. Why might I be receiving so many tags?

Thanks,
Ronan

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-08-12  1:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-10  6:08 Fetching too many tags? Ronan Pigott
2023-08-11 18:09 ` Jeff King
2023-08-11 22:06 ` Ronan Pigott
2023-08-11 23:58   ` Jeff King
2023-08-12  1:04   ` Ronan Pigott

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).