git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BUG] git fetch --prune --tags origin deletes all remote branches origin/*
@ 2010-08-25 22:30 Kevin Ballard
  2010-08-25 23:52 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Kevin Ballard @ 2010-08-25 22:30 UTC (permalink / raw)
  To: git

Running the simple command `git fetch --prune --tags origin` will delete every single remote branch refs/remotes/origin/*, with the sole exception of refs/remotes/origin/HEAD. This is wildly unexpected behavior. This was reproduced on the tip of the next branch, with version git version 1.7.2.2.440.g49ea7.

> git fetch --prune --tags origin
 x [deleted]         (none)     -> origin/ahaney/login_problem_debug
 x [deleted]         (none)     -> origin/ahaney/tocfixes
 x [deleted]         (none)     -> origin/develop
   (refs/remotes/origin/HEAD has become dangling)
 x [deleted]         (none)     -> origin/jon/contentupdates
 x [deleted]         (none)     -> origin/jon/ingest_safety
 x [deleted]         (none)     -> origin/jon/overview
 x [deleted]         (none)     -> origin/master
 x [deleted]         (none)     -> origin/v1_rejection/plan_a

> git fetch origin
From [redacted]
 * [new branch]      ahaney/login_problem_debug -> origin/ahaney/login_problem_debug
 * [new branch]      ahaney/tocfixes -> origin/ahaney/tocfixes
 * [new branch]      develop    -> origin/develop
 * [new branch]      jon/contentupdates -> origin/jon/contentupdates
 * [new branch]      jon/ingest_safety -> origin/jon/ingest_safety
 * [new branch]      jon/overview -> origin/jon/overview
 * [new branch]      master     -> origin/master
 * [new branch]      v1_rejection/plan_a -> origin/v1_rejection/plan_a

-Kevin Ballard

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

* Re: [BUG] git fetch --prune --tags origin deletes all remote branches origin/*
  2010-08-25 22:30 [BUG] git fetch --prune --tags origin deletes all remote branches origin/* Kevin Ballard
@ 2010-08-25 23:52 ` Junio C Hamano
  2010-08-26  2:26   ` Jay Soffian
  0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2010-08-25 23:52 UTC (permalink / raw)
  To: Kevin Ballard; +Cc: git, Jay Soffian

Kevin Ballard <kevin@sb.org> writes:

> Running the simple command `git fetch --prune --tags origin` will delete
> every single remote branch refs/remotes/origin/*, with the sole
> exception of refs/remotes/origin/HEAD. This is wildly unexpected
> behavior. This was reproduced on the tip of the next branch, with
> version git version 1.7.2.2.440.g49ea7.

I suspect "--prune --tags" behaved like that from the very beginning of
the appearance of "--prune", and also it is not limited to --tags.  With
this:

    [remote "origin"]
        url = $over_there
        fetch = refs/heads/master:refs/heads/origin
        fetch = refs/heads/next:refs/heads/next

"git fetch --prune origin master" would probably remove your local next.

get_stale_heads() seems to assume that it has the list of all existing
refs from the remote side available to make its decision.  Unless the
fetch is done using a list of refs configured with remote.<name>.fetch, I
do not think that assumption holds.

  f2ef607 (remote: refactor some logic into get_stale_heads(), 2009-11-10)
  f360d84 (builtin-fetch: add --prune option, 2009-11-10)

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

* Re: [BUG] git fetch --prune --tags origin deletes all remote branches origin/*
  2010-08-25 23:52 ` Junio C Hamano
@ 2010-08-26  2:26   ` Jay Soffian
  0 siblings, 0 replies; 3+ messages in thread
From: Jay Soffian @ 2010-08-26  2:26 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Kevin Ballard, git

On Wed, Aug 25, 2010 at 7:52 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Kevin Ballard <kevin@sb.org> writes:
>
>> Running the simple command `git fetch --prune --tags origin` will delete
>> every single remote branch refs/remotes/origin/*, with the sole
>> exception of refs/remotes/origin/HEAD. This is wildly unexpected
>> behavior. This was reproduced on the tip of the next branch, with
>> version git version 1.7.2.2.440.g49ea7.
>
> I suspect "--prune --tags" behaved like that from the very beginning of
> the appearance of "--prune",

Indeed. The logic was refactored from "git remote prune" which doesn't
support --tags. The quick fix would be to make --prune --tags and
unsupported combination. However:

> and also it is not limited to --tags.  With
> this:
>
>    [remote "origin"]
>        url = $over_there
>        fetch = refs/heads/master:refs/heads/origin
>        fetch = refs/heads/next:refs/heads/next
>
> "git fetch --prune origin master" would probably remove your local next.

I would think "remote prune" suffered the same fate in that situation.

> get_stale_heads() seems to assume that it has the list of all existing
> refs from the remote side available to make its decision.  Unless the
> fetch is done using a list of refs configured with remote.<name>.fetch, I
> do not think that assumption holds.
>
>  f2ef607 (remote: refactor some logic into get_stale_heads(), 2009-11-10)
>  f360d84 (builtin-fetch: add --prune option, 2009-11-10)

I'm not sure what the best fix here is. It would seem prune should
obey the user's fetch spec.

j.

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

end of thread, other threads:[~2010-08-26  2:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-25 22:30 [BUG] git fetch --prune --tags origin deletes all remote branches origin/* Kevin Ballard
2010-08-25 23:52 ` Junio C Hamano
2010-08-26  2:26   ` Jay Soffian

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