From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 87559 invoked by alias); 25 Sep 2019 02:04:02 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 87549 invoked by uid 89); 25 Sep 2019 02:04:02 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-8.4 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy= X-HELO: userp2120.oracle.com Received: from userp2120.oracle.com (HELO userp2120.oracle.com) (156.151.31.85) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 25 Sep 2019 02:04:01 +0000 Received: from pps.filterd (userp2120.oracle.com [127.0.0.1]) by userp2120.oracle.com (8.16.0.27/8.16.0.27) with SMTP id x8P1werj066523; Wed, 25 Sep 2019 02:03:58 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=subject : to : references : from : message-id : date : mime-version : in-reply-to : content-type : content-transfer-encoding; s=corp-2019-08-05; bh=57KQ1Qj7yw4oJym53byhBaW8MPrnjcpW9pWyUjoI630=; b=YTo9Ecxu8wh7hcOhTKOhWbLGyQlxeeTHjBZNSPKlg+2AZfPm4u/oZvcRXebizmtvifjM gPZeMSsZZLT0YeYLQ5poldlYaW+NUBLMTHC/hJcZIRuG/ocENrWZ/QIm3sekNnkiEumn ZUDuYkEUwkL2N3B+C744sC3FUNnA0BInIB/SJ4xeOMOReEz9bguv4wYw1hIfYx1lHtds z4gQXEHShPy60Y8oagcB04T6wVQw4MpPj4F+0LZCZGELeIRuXxfY6mWy/n1rkUm+5hqi +TsAKVCdwVQOBOv3BnKOptOqq2sLiy7/1Awm/leMbqzArNKb3jBUDZAd1g8P4qtN9hHm 7Q== Received: from aserp3020.oracle.com (aserp3020.oracle.com [141.146.126.70]) by userp2120.oracle.com with ESMTP id 2v5cgr1jvk-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 25 Sep 2019 02:03:58 +0000 Received: from pps.filterd (aserp3020.oracle.com [127.0.0.1]) by aserp3020.oracle.com (8.16.0.27/8.16.0.27) with SMTP id x8P23X4W188490; Wed, 25 Sep 2019 02:03:57 GMT Received: from userv0121.oracle.com (userv0121.oracle.com [156.151.31.72]) by aserp3020.oracle.com with ESMTP id 2v7vnwxxcx-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 25 Sep 2019 02:03:57 +0000 Received: from abhmp0020.oracle.com (abhmp0020.oracle.com [141.146.116.26]) by userv0121.oracle.com (8.14.4/8.13.8) with ESMTP id x8P23tfu020338; Wed, 25 Sep 2019 02:03:56 GMT Received: from [10.159.227.248] (/10.159.227.248) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 24 Sep 2019 19:03:55 -0700 Subject: Re: [PATCH v2] gdb: CTF support To: Simon Marchi , gdb-patches@sourceware.org References: <1564530195-27659-1-git-send-email-weimin.pan@oracle.com> <206312d5-cc32-15f0-dd20-25f8d7dbb369@oracle.com> <99d30cd3-4c97-2455-b9f1-f44290f136d8@simark.ca> From: Wei-min Pan Message-ID: <7a453cbb-de35-289a-7343-733825422980@oracle.com> Date: Wed, 25 Sep 2019 02:04:00 -0000 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-SW-Source: 2019-09/txt/msg00475.txt.bz2 On 9/24/2019 5:26 PM, Simon Marchi wrote: > On 2019-09-24 8:22 p.m., Weimin Pan wrote: >> Hi Simon, >> >> I have created a combined branch with changes in both binutils and gdb >> on our server and tested it a bit. Trying to send it upstream doesn't work: >> >> % git remote -v >> origin  git://ca-tools4.us.oracle.com/binutils-gdb.git (fetch) >> origin  git://ca-tools4.us.oracle.com/binutils-gdb.git (push) >> upstream        ssh://sourceware.org/git/binutils-gdb.git (fetch) >> upstream        ssh://sourceware.org/git/binutils-gdb.git (push) >> >> % git push upstream oracle/ctf:oracle/ctf >> Permission denied (publickey). >> fatal: Could not read from remote repository. >> >> Please make sure you have the correct access rights >> and the repository exists. >> >> % >> >> Weimin > Hi Weimin, > > You should be able to push a "user branch" if its name follows the > form "users/*". You can look at the existing branches for example: > > https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=heads > > So, pushing to "users/weimin/ctf" would make sense. Hi Simon, Thanks for the info. But it didn't make any difference (: % git push upstream oracle/ctf:users/weimin/ctf Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. > > Simon