From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 104569 invoked by alias); 23 Jan 2020 05:05:53 -0000 Mailing-List: contact overseers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: , Sender: overseers-owner@sourceware.org Received: (qmail 104561 invoked by uid 89); 23 Jan 2020 05:05:53 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-4.0 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: sam.airs.com Received: from sam.airs.com (HELO sam.airs.com) (64.13.145.90) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 23 Jan 2020 05:05:50 +0000 Received: (qmail 34660 invoked by uid 10); 23 Jan 2020 05:05:49 -0000 Received: (qmail 16283 invoked by uid 500); 23 Jan 2020 05:05:17 -0000 From: Ian Lance Taylor To: "Yangfei \(Felix\)" Cc: "overseers@gcc.gnu.org" Subject: Re: Question: how to update ssh public key? References: Date: Thu, 23 Jan 2020 05:05:00 -0000 In-Reply-To: (Yangfei's message of "Thu, 23 Jan 2020 04:22:42 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2020-q1/txt/msg00036.txt "Yangfei (Felix)" writes: > Thanks for the timely reply. > Yes, I have a backup of the private key in my USB device. > Does this help in any way? Yes, that means that you still contact gcc.gnu.org. Using the private key, you can run ssh gcc.gnu.org append-key < new-public-key or you can replace the existing key with ssh gcc.gnu.org replace-key < new-public-key You can test whether SSH works with your private key with ssh gcc.gnu.org alive Ian