Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:70020 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 76819 invoked from network); 5 Nov 2013 21:30:17 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 5 Nov 2013 21:30:17 -0000 Authentication-Results: pb1.pair.com header.from=gwang@litespeedtech.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=gwang@litespeedtech.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain litespeedtech.com designates 209.85.216.175 as permitted sender) X-PHP-List-Original-Sender: gwang@litespeedtech.com X-Host-Fingerprint: 209.85.216.175 mail-qc0-f175.google.com Received: from [209.85.216.175] ([209.85.216.175:62148] helo=mail-qc0-f175.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F5/57-40963-86369725 for ; Tue, 05 Nov 2013 16:30:17 -0500 Received: by mail-qc0-f175.google.com with SMTP id e16so5127636qcx.20 for ; Tue, 05 Nov 2013 13:30:14 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=kBIFdBI43E3/B1JWpJoo1JN4vLcpDKx+fvvqG9iCo8Y=; b=Wb9lAzVOnqP+MG81S1S2dipemqjSZc25lXlhVy6g9Aw96TGS9tNv/qLynJeOzuQO06 erJXfR5RreNa4lIfKadElaJoSFeX/0xippFlmAgNnCY46EGupmdAqqzVWU4Lk/tCf1J0 FrxnHhRNgCarojjBLpYknyLBYICKS29of23Jbg6HkHCGr3m6yN8DbTGG3LJzTHzKe23k uJmSJfOT3c63BXhZyhnnNhwAOW146dT3XZw7oOcjN5OiaGx5GYhmNQ32gTkgs9eSmrFD JpZbDON4o2W8/hQIk1LwoGQaouw3v+fiZqE9nOyx4dyhWR3ToAfIQuEW0eyPUsI/nfh7 wZHQ== X-Gm-Message-State: ALoCoQn3VWzoshkjlbYprikOkARyGMGUxY9K0sar1nF8XU1W6O7AYhICklXbgekQiUGg+eAZzIwH X-Received: by 10.224.66.5 with SMTP id l5mr707658qai.31.1383687014585; Tue, 05 Nov 2013 13:30:14 -0800 (PST) Received: from [192.168.0.218] (ool-ae2c16d6.dyn.optonline.net. [174.44.22.214]) by mx.google.com with ESMTPSA id j1sm18061324qaa.6.2013.11.05.13.30.13 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 05 Nov 2013 13:30:14 -0800 (PST) Message-ID: <52796343.9020801@litespeedtech.com> Date: Tue, 05 Nov 2013 16:29:39 -0500 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: "internals@lists.php.net" Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: cannot push to 5.x branches From: gwang@litespeedtech.com (George Wang) Hi, I try to update sapi/litespeed code to the latest. Successfully pushed to master branch: remote: Welcome gwang. remote: Changesets accepted. Thank you for your contribution. remote: remote: Attempting to push to mirror git@github.com:php/php-src.git remote: To git@github.com:php/php-src.git remote: c4cfdfa..3720fd7 master -> master To git@git.php.net:php-src.git c4cfdfa..3720fd7 HEAD -> master but cannot push to 5.x branches. Got: remote: Welcome gwang. remote: You have insufficient Karma! remote: I'm sorry, I cannot allow you to write to remote: php-src.git/ remote: Have a nice day. To git@git.php.net:php-src.git ! [remote rejected] HEAD -> 5.3 (pre-receive hook declined) error: failed to push some refs to 'git@git.php.net:php-src.git' My .git/config: [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] url = git@git.php.net:php-src.git fetch = +refs/heads/*:refs/remotes/origin/* pushurl = git@git.php.net:php-src.git [branch "master"] remote = origin merge = refs/heads/master [branch "5.3"] remote = origin merge = refs/heads/PHP-5.3 [branch "5.4"] remote = origin merge = refs/heads/PHP-5.4 [branch "5.5"] remote = origin merge = refs/heads/PHP-5.5 Did I do anything wrong, or I just need more Karma? Thanks, George Wang