From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 36240 invoked by alias); 30 Dec 2019 00:44:42 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 36230 invoked by uid 89); 30 Dec 2019 00:44:41 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=1.8 required=5.0 tests=AWL,BAYES_00,FORGED_MUA_MOZILLA,FREEMAIL_FROM,KHOP_HELO_FCRDNS,RDNS_DYNAMIC,TVD_RCVD_IP autolearn=no version=3.3.1 spammy=H*r:4.89, ended, feed, HContent-Transfer-Encoding:8bit X-HELO: blaine.gmane.org Received: from 195-159-176-226.customer.powertech.no (HELO blaine.gmane.org) (195.159.176.226) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 30 Dec 2019 00:44:40 +0000 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1iljAk-0017kl-KA for gcc@gcc.gnu.org; Mon, 30 Dec 2019 01:44:38 +0100 To: gcc@gcc.gnu.org From: "Julien \"FrnchFrgg\" Rivaud" Subject: Re: Proposal for the transition timetable for the move to GIT Date: Mon, 30 Dec 2019 00:44:00 -0000 Message-ID: References: <20191216133632.GC3152@gate.crashing.org> <20191216135451.GA3142@thyrsus.com> <20191216140514.GD3152@gate.crashing.org> <20191216153649.GE3152@gate.crashing.org> <20191225120747.GA96669@thyrsus.com> <20191226111633.GJ10088@tucnak> <5DCEA32B-3E36-4400-B931-9F4E2A8F3FA5@linaro.org> <155B5BFD-6ECF-4EBF-A38C-D6DD178FB497@linaro.org> <2b6330f2-1a00-ac89-fd3c-4b70e5454f4b@arm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 In-Reply-To: X-IsSubscribed: yes X-SW-Source: 2019-12/txt/msg00532.txt.bz2 Le 30/12/2019 à 01:18, Joseph Myers a écrit : > Do "git log egcs_1_1_2_prerelease_2" in gcc-reparent, for example. The > history ends up containing two different versions of SVN r5 and of many > other commits. When trying to migrate Blender from svn to git, we actually tried git-svn first, and it produced that kind of strangeness. Sometimes, something it didn't like in a commit made it duplicate or even multiply more the whole history predating that commit, with slight differences (that explain the differing sha1 and thus the multiple versions). That's actually the reason I got involved with reposurgeon in the first place, trying to make the then Python version able to cope with the Blender repository with less than 64GB of ram. I thought that working around git-svn to only feed it linear commits would sidestep that bug, but it looks like it still can be triggered. (At the time the bug was so common that we ended with maybe 20 or 30 times the first 1500 commits in the repository, and of course with the speed of git-svn, doing 30 times the same work is horrendous) Julien