Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:66635 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 64216 invoked from network); 15 Mar 2013 09:17:00 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 15 Mar 2013 09:17:00 -0000 Authentication-Results: pb1.pair.com header.from=patrick.allaert@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=patrick.allaert@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.219.52 as permitted sender) X-PHP-List-Original-Sender: patrick.allaert@gmail.com X-Host-Fingerprint: 209.85.219.52 mail-oa0-f52.google.com Received: from [209.85.219.52] ([209.85.219.52:51830] helo=mail-oa0-f52.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id D6/D0-59234-907E2415 for ; Fri, 15 Mar 2013 04:16:57 -0500 Received: by mail-oa0-f52.google.com with SMTP id k14so3209679oag.11 for ; Fri, 15 Mar 2013 02:16:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:date:x-google-sender-auth:message-id :subject:from:to:cc:content-type; bh=U+b7HmmgDiMB8bboi+5tK2RuYMG+7AISvMI1hv5jSMI=; b=gmnIwXlYtXMFoAzGAMVB2IF1Vuy6+CFiP7wGeh2Gs3rUJf4aAtIRoXJCQRzV0lTytH uxPo//4Uhvxj1/ty7dvFQHxUsnwuN77oIePYDScdYhdf63ionr+IzN/VifeAHxDr1UIx 3Q1255ot8PduFIKiUlaHHN2x6Lz1pxDonnAdFDlKbCtiFxcbcvGJ7arsPX36m/D9/Zz/ srhua+AdTJZTRhEciHAeYNG8Z9OrMSEjpHW0cnI/ZKVkk4ZwQLIkc81bpor1TWN3iF0a DZWKQcrt/i8lGvabxRIiC+nsbRYbvD0tEShmTQACdmXY2Ivjr3Q6IsPkU2UfdYuq4y63 aSPA== MIME-Version: 1.0 X-Received: by 10.60.29.161 with SMTP id l1mr2627099oeh.111.1363339014657; Fri, 15 Mar 2013 02:16:54 -0700 (PDT) Sender: patrick.allaert@gmail.com Received: by 10.76.163.38 with HTTP; Fri, 15 Mar 2013 02:16:54 -0700 (PDT) Date: Fri, 15 Mar 2013 10:16:54 +0100 X-Google-Sender-Auth: FfrJ_GIHS7BZBa4a3W7oSjpSpJM Message-ID: To: Dmitry Stogov Cc: Xinchen Hui , David Soria Parra , Rasmus Lerdorf , Zeev Suraski , PHP Internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Re: Merging O+ into 5.5 From: patrickallaert@php.net (Patrick ALLAERT) 2013/3/15 Dmitry Stogov : > Hi, > > For now, I'm trying subtree merging (See http://git-scm.com/book/ch6-7.htmland > https://www.kernel.org/pub/software/scm/git/docs/howto/using-merge-subtree.html > ) > > You may see the result at https://github.com/dstogov/php-src/tree/PHP-5.5/ > > This is not an ideal solution: > - "git log" doesn't show full history on O+ files (however it's stored in > GIT) > - merging from PHP to existing O+ git repo (for pecl release) is not > trivial. > > Anyway I'm going to merge O+ into PHP-5.5 today. Using "git subtree merge" you will definitely loose log, however, ZO+ hasn't been pushed to github with its full history anyway, which is a bit sad. You should use a merge technique that relies on "git filter-branch" if you want to keep the history. Patrick