qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] Branch/tag renames in git
@ 2009-04-28 21:29 Anthony Liguori
  2009-04-28 21:42 ` François Revol
  2009-04-28 22:12 ` Johannes Schindelin
  0 siblings, 2 replies; 7+ messages in thread
From: Anthony Liguori @ 2009-04-28 21:29 UTC (permalink / raw)
  To: qemu-devel@nongnu.org

Hi,

Based on the previous discussion, I've renamed the branches tags in 
git.  It doesn't look like a git pull automatically cleans up the old 
branches/tags which is somewhat unfortunate.

The new tags are in the form v0.10.3.  The new stable branch is in the 
form stable-0.10.

You may have to update your local branches to track the appropriate 
remote branch if you've been following stable.

-- 
Regards,

Anthony Liguori

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

* Re: [Qemu-devel] Branch/tag renames in git
  2009-04-28 21:29 [Qemu-devel] Branch/tag renames in git Anthony Liguori
@ 2009-04-28 21:42 ` François Revol
  2009-04-28 21:58   ` François Revol
  2009-04-28 22:04   ` Anthony Liguori
  2009-04-28 22:12 ` Johannes Schindelin
  1 sibling, 2 replies; 7+ messages in thread
From: François Revol @ 2009-04-28 21:42 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel

> Hi,
>
> Based on the previous discussion, I've renamed the branches tags in
> git.  It doesn't look like a git pull automatically cleans up the old
> branches/tags which is somewhat unfortunate.
>
> The new tags are in the form v0.10.3.  The new stable branch is in
> the
> form stable-0.10.

Ah... so that's why I now get
$ git pull
error: no such remote ref refs/heads/stable_0_10
Fetch failure: git://git.savannah.nongnu.org/qemu.git

?

Why would it want to care about this branch anyway, I just want HEAD...

>
> You may have to update your local branches to track the appropriate
> remote branch if you've been following stable.
>

And how would one do this, I've been reading git man pages for 2h now
and I'm out of aspirin ;)

François.

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

* Re: [Qemu-devel] Branch/tag renames in git
  2009-04-28 21:42 ` François Revol
@ 2009-04-28 21:58   ` François Revol
  2009-04-28 22:04   ` Anthony Liguori
  1 sibling, 0 replies; 7+ messages in thread
From: François Revol @ 2009-04-28 21:58 UTC (permalink / raw)
  To: François Revol; +Cc: aliguori, qemu-devel

> > Hi,
> >
> > Based on the previous discussion, I've renamed the branches tags in
> > git.  It doesn't look like a git pull automatically cleans up the
> > old
> > branches/tags which is somewhat unfortunate.
> >
> > The new tags are in the form v0.10.3.  The new stable branch is in
> > the
> > form stable-0.10.
>
> Ah... so that's why I now get
> $ git pull
> error: no such remote ref refs/heads/stable_0_10
> Fetch failure: git://git.savannah.nongnu.org/qemu.git

According to
http://www.gelato.unsw.edu.au/archives/git/0612/35149.html

one should
vi .git/remotes/origin
and delete the line talking about stable_0_10

Damn, I'm now replying to myself, this is incoGITable.

François.

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

* Re: [Qemu-devel] Branch/tag renames in git
  2009-04-28 21:42 ` François Revol
  2009-04-28 21:58   ` François Revol
@ 2009-04-28 22:04   ` Anthony Liguori
  2009-04-28 22:08     ` François Revol
  1 sibling, 1 reply; 7+ messages in thread
From: Anthony Liguori @ 2009-04-28 22:04 UTC (permalink / raw)
  To: François Revol; +Cc: qemu-devel

François Revol wrote:
>> Hi,
>>
>> Based on the previous discussion, I've renamed the branches tags in 
>> git.  It doesn't look like a git pull automatically cleans up the old 
>> branches/tags which is somewhat unfortunate.
>>
>> The new tags are in the form v0.10.3.  The new stable branch is in 
>> the 
>> form stable-0.10.
>>     
>
> Ah... so that's why I now get
> $ git pull
> error: no such remote ref refs/heads/stable_0_10
> Fetch failure: git://git.savannah.nongnu.org/qemu.git
>
> ?
>   

git config branch.stable_0_10.merge refs/heads/stable-0.10

Assuming you have a local branch.  I can't see why you'd have an issue 
if you didn't have a local branch tracking the remote branch.

-- 
Regards,

Anthony Liguori

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

* Re: [Qemu-devel] Branch/tag renames in git
  2009-04-28 22:04   ` Anthony Liguori
@ 2009-04-28 22:08     ` François Revol
  0 siblings, 0 replies; 7+ messages in thread
From: François Revol @ 2009-04-28 22:08 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel

> François Revol wrote:
> >> Hi,
> >>
> >> Based on the previous discussion, I've renamed the branches tags
> > > in
> >> git.  It doesn't look like a git pull automatically cleans up the
> > > old
> >> branches/tags which is somewhat unfortunate.
> >>
> >> The new tags are in the form v0.10.3.  The new stable branch is in
> >> the
> >> form stable-0.10.
> >>
> >
> > Ah... so that's why I now get
> > $ git pull
> > error: no such remote ref refs/heads/stable_0_10
> > Fetch failure: git://git.savannah.nongnu.org/qemu.git
> >
> > ?
> >
>
> git config branch.stable_0_10.merge refs/heads/stable-0.10
>
> Assuming you have a local branch.  I can't see why you'd have an
> issue

Assuming you have git-config too...
maybe it's just too old but again, ENOSPC.

> if you didn't have a local branch tracking the remote branch.

error: forward reference: local branch
I shall read about it first.


François.

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

* Re: [Qemu-devel] Branch/tag renames in git
  2009-04-28 21:29 [Qemu-devel] Branch/tag renames in git Anthony Liguori
  2009-04-28 21:42 ` François Revol
@ 2009-04-28 22:12 ` Johannes Schindelin
  2009-04-28 22:24   ` François Revol
  1 sibling, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2009-04-28 22:12 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel@nongnu.org

Hi,

On Tue, 28 Apr 2009, Anthony Liguori wrote:

> Based on the previous discussion, I've renamed the branches tags in git.  
> It doesn't look like a git pull automatically cleans up the old 
> branches/tags which is somewhat unfortunate.

Git complaints should be sent to git@vger.kernel.org, not hidden in some 
mailing list only one Git developer reads (and that only when time 
permits).

If you hide something, do not expect people who should know to find them.

Ciao,
Dscho

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

* Re: [Qemu-devel] Branch/tag renames in git
  2009-04-28 22:12 ` Johannes Schindelin
@ 2009-04-28 22:24   ` François Revol
  0 siblings, 0 replies; 7+ messages in thread
From: François Revol @ 2009-04-28 22:24 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: aliguori, qemu-devel

> Hi,
>
> On Tue, 28 Apr 2009, Anthony Liguori wrote:
>
> > Based on the previous discussion, I've renamed the branches tags in
> > git.
> > It doesn't look like a git pull automatically cleans up the old
> > branches/tags which is somewhat unfortunate.
>
> Git complaints should be sent to git@vger.kernel.org, not hidden in
> some
> mailing list only one Git developer reads (and that only when time
> permits).

You can even send them a patch, if you get it to work...
:^)

François.

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

end of thread, other threads:[~2009-04-28 22:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-28 21:29 [Qemu-devel] Branch/tag renames in git Anthony Liguori
2009-04-28 21:42 ` François Revol
2009-04-28 21:58   ` François Revol
2009-04-28 22:04   ` Anthony Liguori
2009-04-28 22:08     ` François Revol
2009-04-28 22:12 ` Johannes Schindelin
2009-04-28 22:24   ` François Revol

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