From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3825 invoked by alias); 22 Aug 2013 18:56:54 -0000 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org Received: (qmail 3805 invoked by uid 89); 22 Aug 2013 18:56:54 -0000 X-Spam-SWARE-Status: No, score=-3.4 required=5.0 tests=AWL,BAYES_05,KHOP_THREADED,RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients Received: from ka.mail.enyo.de (HELO ka.mail.enyo.de) (87.106.162.201) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 22 Aug 2013 18:56:53 +0000 Received: from [172.17.135.4] (helo=deneb.enyo.de) by ka.mail.enyo.de with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) id 1VCa3r-0003jX-0s; Thu, 22 Aug 2013 20:56:47 +0200 Received: from fw by deneb.enyo.de with local (Exim 4.80) (envelope-from ) id 1VCa3o-0004YP-9U; Thu, 22 Aug 2013 20:56:44 +0200 From: Florian Weimer To: Eli Zaretskii Cc: Tom Tromey , gdb@sourceware.org, binutils@sourceware.org Subject: Re: A Proposal to Move to Git References: <8738q4gj7a.fsf@fleche.redhat.com> <83siy3jd7m.fsf@gnu.org> Date: Thu, 22 Aug 2013 18:56:00 -0000 In-Reply-To: <83siy3jd7m.fsf@gnu.org> (Eli Zaretskii's message of "Wed, 21 Aug 2013 18:06:05 +0300") Message-ID: <87zjs9sger.fsf@mid.deneb.enyo.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2013-08/txt/msg00101.txt.bz2 * Eli Zaretskii: > . Files/directories that are deleted or moved/renamed. Will the > information from the Attic be extracted, and will git be able to > intuit renaming and handle deleted files correctly? Git uses contents-based heuristics to reconstruct renames. The downside is that it is impossible to make sure that a rename is recognized by Git. The advantage is that users cannot forget to register renames on the version control side. The CVS checkout reconstruction has to be sufficiently accurate and preserve at a copy of the file at each intermediate checkout version. Such a correct conversion is usually quite difficult to achieve (CVS history is usually quite bad, due to bugs and user errors), but it's obviously desirable for other reasons.