Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [mat-dev] MAT git issues
  • From: Kevin Grigorenko <kevin.grigorenko@xxxxxxxxxx>
  • Date: Wed, 18 Jan 2023 15:02:37 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=us.ibm.com; dmarc=pass action=none header.from=us.ibm.com; dkim=pass header.d=us.ibm.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=TsZjt5elD89wmcZrDgfpWJrFZLdWuSksNAiw5GOUnug=; b=eY2yu9ha3lFEYd9qnU4mXypFRm+XRJF3EEeeAiWl/h1489pvwrlNqSQNzaTdzzOYrB2/TdKcxOa1S+4WjrxYHgNBDvgD32i2rWf6SpcHu8Oynh6h/VYb7ZjT9LdXrL9vhYL+2HvKTkJX6HhqHlN9gcANfMcIH0/wauYePR0DL0cYCD7g0vy6ni7lvXQ518N4Q0pT8O/mrq5QAFagDmzUZ5gOURVZfjtM4ejQsgTjVA002cpp9gthUdiEJNlICMbZM521RooO6k7ycF9ZomPR6yE1Uldex3O2TP7PvEps6T98/aRzU8/3q6nOTT9NReIFiaqjKEDzI01F5v1mCJtUYw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=O5PY7qKrq2kaFZNG/CujasRFaMs0wj+oqezEBfk6aRHiXrkYU7V2JocfDC7p3LtCXerDM/9iTd1VydguwOSjBvJLYrnDl3ABbBy9OAYHTxC5VQPuyPpTKTokzIt1h9zTn57B3LP16acANj95qzXqykbSFYs5Pst8xw06CRvtoFpVKBI/kjxX2urxyrulK2enrXjv88GvuLM1QcSNN2kFtouXuk6v/VCBLCATlZE0vjOZld5s69u+YEE+GJ+EZMAkYcZkA/ZRyYWswfdsdYgXA63jOGXq4Dba0wgjCpnopArLXBu1r54v3q0DAHtZPSZHAAvj6bkKBU0GAyeiAPMcBA==
  • Delivered-to: mat-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/mat-dev/>
  • List-help: <mailto:mat-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/mat-dev>, <mailto:mat-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/mat-dev>, <mailto:mat-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHZJRYuzjFseHsQpkOKq13qWMP72K6kUQZB
  • Thread-topic: MAT git issues

FYI, the issue was that Eclipse Git removed support for (some|all) RSA SSH keys. I changed to ED25519 with ssh-keygen -t ed25519, added the public key to https://git.eclipse.org/r/settings/#SSHKeys and added this to ~/.ssh/config:

 

Host git.eclipse.org

  User kgrigorenko

  IdentityFile /Users/kevin/.ssh/id_ed25519

  IdentitiesOnly yes

 

-- 

Kevin Grigorenko

IBM Automation Portfolio SWAT - App Platform, Software Engineer

 

From: Kevin Grigorenko <kevin.grigorenko@xxxxxxxxxx>
Date: Tuesday, January 10, 2023 at 11:13 AM
To: Memory Analyzer Dev list <mat-dev@xxxxxxxxxxx>
Subject: MAT git issues

Is anyone else having permissions issues with the MAT git? I can't do a pull or clone. It's not my SSH agent or config as I can use the same key with other non-Eclipse repositories. I checked my git.eclipse.org settings and the correct public key is there (nothing recently changed). I checked my eclipse.org account settings and the corrent user ID is there and there are no other warnings or errors (nothing recently changed).

 

$ git clone ssh://kgrigorenko@xxxxxxxxxxxxxxx:29418/mat/org.eclipse.mat.git

Cloning into 'org.eclipse.mat'...

kgrigorenko@xxxxxxxxxxxxxxx: Permission denied (publickey).

fatal: Could not read from remote repository.

 

Please make sure you have the correct access rights

and the repository exists.

 

-- 

Kevin Grigorenko

IBM Automation Portfolio SWAT - App Platform, Software Engineer


Back to the top