From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SRlpQ-00046n-L6 for qemu-devel@nongnu.org; Tue, 08 May 2012 10:55:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SRlpL-0001Jy-Qr for qemu-devel@nongnu.org; Tue, 08 May 2012 10:55:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:15261) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SRlpL-0001JR-FA for qemu-devel@nongnu.org; Tue, 08 May 2012 10:55:47 -0400 Date: Tue, 8 May 2012 17:55:49 +0300 From: "Michael S. Tsirkin" Message-ID: <20120508145549.GB24510@redhat.com> References: <20120508142011.GA24053@redhat.com> <4FA93076.8020007@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4FA93076.8020007@codemonkey.ws> Subject: Re: [Qemu-devel] [PULL] rtl8139 bugfix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, avi@redhat.com On Tue, May 08, 2012 at 09:40:54AM -0500, Anthony Liguori wrote: > On 05/08/2012 09:20 AM, Michael S. Tsirkin wrote: > >The following changes since commit 847c25d01cbe8e4fe457a7426f82daaaf3287aae: > > > > hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes (2012-05-07 16:31:40 +0400) > > > >are available in the git repository at: > > > > git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git > > > >for you to fetch changes up to bdc62e62ead1a6c2a113934bf28cb5abef48618d: > > You need to use a tag/branch, not a commit. Yes my script broke and I didn't notice. Sent the right location now, it's git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git refs/tags/for_anthony > > I don't know of a way to make git fetch all available objects in a repo. > > Regards, > > Anthony Liguori When there's a will, there's a way: you could get all tags and heads: git fetch git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git \ refs/tags/*:refs/remotes/mst/tags/* \ refs/heads/*:refs/remotes/mst/heads/* and then merge the commit: git merge bdc62e62ead1a6c2a113934bf28cb5abef48618d: But that's just an apropos. I made a mistake, hopefully corrected. -- MST