<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[git using different ssh key]]></title><description><![CDATA[<p dir="auto">First, generate new keygen</p>
<pre><code># ssh-keygen
</code></pre>
<p dir="auto">Note: ensure id_rsa filename is a custom name, not default "id_rsa".<br />
Example: ~/.ssh/id_rsa_custom_key</p>
<p dir="auto">Then, add the custom key in github/git source</p>
<p dir="auto">Then, clone/pull using command below using custom key</p>
<pre><code>GIT_SSH_COMMAND='ssh -i ~/.ssh/id_rsa_custom_key' git clone git@github.com:chromium/chromium.git
</code></pre>
<p dir="auto">Ref: <a href="https://ma.ttias.be/specify-a-specific-ssh-private-key-for-git-pull-git-clone/" rel="nofollow ugc">https://ma.ttias.be/specify-a-specific-ssh-private-key-for-git-pull-git-clone/</a></p>
]]></description><link>https://bb.aizu.my/topic/50/git-using-different-ssh-key</link><generator>RSS for Node</generator><lastBuildDate>Wed, 20 May 2026 06:37:37 GMT</lastBuildDate><atom:link href="https://bb.aizu.my/topic/50.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 19 Jun 2024 10:28:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to git using different ssh key on Sat, 24 Jan 2026 03:35:40 GMT]]></title><description><![CDATA[<p dir="auto">File: ~/.ssh/config</p>
<pre><code>Host github.com
    IdentityFile ~/.ssh/id_rsa_custom_key
    IdentitiesOnly yes
</code></pre>
<p dir="auto">Create this file in the server, so it always execute this by default.</p>
]]></description><link>https://bb.aizu.my/post/102</link><guid isPermaLink="true">https://bb.aizu.my/post/102</guid><dc:creator><![CDATA[aizu]]></dc:creator><pubDate>Sat, 24 Jan 2026 03:35:40 GMT</pubDate></item></channel></rss>