From mboxrd@z Thu Jan 1 00:00:00 1970 From: Johannes Sixt Subject: Re: Windows support Date: Thu, 26 Jul 2007 17:25:12 +0200 Organization: eudaptics software gmbh Message-ID: <46A8BCD8.B925922@eudaptics.com> References: <46d6db660707260600w6c3ca5d2ve6aaf06c7684789d@mail.gmail.com> <46d6db660707260632q16f927a2r64f6b4588dd3cb48@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Johannes Schindelin , Christian MICHON To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Thu Jul 26 17:25:35 2007 Return-path: Envelope-to: gcvg-git@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1IE5Da-00022l-33 for gcvg-git@gmane.org; Thu, 26 Jul 2007 17:25:34 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759514AbXGZPZS (ORCPT ); Thu, 26 Jul 2007 11:25:18 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756483AbXGZPZS (ORCPT ); Thu, 26 Jul 2007 11:25:18 -0400 Received: from main.gmane.org ([80.91.229.2]:40893 "EHLO ciao.gmane.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759039AbXGZPZQ (ORCPT ); Thu, 26 Jul 2007 11:25:16 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IE5D8-0000hd-On for git@vger.kernel.org; Thu, 26 Jul 2007 17:25:06 +0200 Received: from cm56-163-160.liwest.at ([86.56.163.160]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 26 Jul 2007 17:25:06 +0200 Received: from J.Sixt by cm56-163-160.liwest.at with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 26 Jul 2007 17:25:06 +0200 X-Injected-Via-Gmane: http://gmane.org/ X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: cm56-163-160.liwest.at X-Mailer: Mozilla 4.73 [en] (Windows NT 5.0; U) X-Accept-Language: en Sender: git-owner@vger.kernel.org Precedence: bulk X-Mailing-List: git@vger.kernel.org Archived-At: Nguyen Thai Ngoc Duy wrote: > > On 7/26/07, Christian MICHON wrote: > > I can commit using "git commit -a -m ok", but then I get this kind of > > error message (and ash dies, I go back to xp/cmd prompt) > > > > mv: cannot rename '.git/next-index4540': File exists > > Baah.. something goes wrong again. The problem is likely that rename() of MSCVRT.DLL is implemented in terms of MoveFile(), which can't move over an existing file. A wrapper is needed that uses MoveFileEx() instead. We have the same problem also in git-apply: One of the tests fails for this reason. -- Hannes