git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: SungHyun Nam <goweol@gmail.com>
To: Avery Pennarun <apenwarr@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: git bundle bug?
Date: Mon, 26 Jul 2010 16:25:48 +0900	[thread overview]
Message-ID: <4C4D387C.8040200@gmail.com> (raw)
In-Reply-To: <AANLkTincXfdZehvVjVjtfvbuM-Jim5Tvtm9Yy=s8-fMR@mail.gmail.com>

Avery Pennarun wrote:
> On Mon, Jul 26, 2010 at 2:45 AM, SungHyun Nam<goweol@gmail.com>  wrote:
>> In a current 'git' source tree, next command does not includes
>> refs/tags/v1.7.2.
>>     $ git bundle create ~/git.bundle v1.7.1..master
>>
>> After applying the git.bundle, now 'git version' does not
>> show 1.7.2, but...
>>     $ git version
>>     git version 1.7.1.772.g64fdc
>
> 'git bundle' only includes the tags that you specifically tell it to.
> It's kind of like 'git push' that way.  If you do:
>
>     git tag -s mytag
>     git push origin master
>
> You don't expect origin to contain 'mytag' just because you pushed 'master'.
>
>> I hope the 'git bundle' includes all the tags when I use 'master'
>> or 'HEAD'.
>>
>> Well, I could use v1.7.1..v1.7.2.  But want to use simple script like:
>>     $ git bundle create ~/git.bundle lastbundle..master
>>     $ git tag -f lastbundle master
>
> That kind of magic would require 'git bundle' to look at all your tags
> and see which ones lie in the range lastbundle..master.  And even that
> isn't perfect, since you might have added a new tag that points before
> lastbundle but was added *after* lastbundle.  So every bundle you
> created would need to include *all* your previous tags.
>
> Nevertheless, if you wanted to create a bundle that includes *all*
> your tags, but not any of the objects leading up to lastbundle, this
> works:
>
>     git bundle create ~/git.bundle --tags lastbundle..master

It worked fine with:
     git pull ~/git.bundle --tags master:master

> Note however that it will include tags even if they *aren't* part of
> master.  That is, if you have tags pointing at branch 'next', all the
> objects for those tags will *also* be included.
>
> Have fun,
>
> Avery

Thanks,
namsh

  reply	other threads:[~2010-07-26  7:26 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-26  6:45 git bundle bug? SungHyun Nam
2010-07-26  6:55 ` Avery Pennarun
2010-07-26  7:25   ` SungHyun Nam [this message]
2010-07-26  7:29 ` bash completion for 'git version'? (Re: git bundle bug?) SungHyun Nam

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4C4D387C.8040200@gmail.com \
    --to=goweol@gmail.com \
    --cc=apenwarr@gmail.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).