问题描述
GitHub 为 Windows 分发了一个简化的 Git 客户端,他们称之为 GitHub for Windows;它通过 GitHub 帐户进行身份验证,尽管它通常将 HTTPS 远程用于它创建的本地存储库,如果您告诉它使用在 GitHub 上具有 SSH 远程的现有本地存储库,它将使用您的 GitHub 凭据在 GitHub 帐户上为自己设置 SSH 密钥.但是它将 SSH 密钥保存在文件系统中的什么位置?
GitHub distributes a simplified Git client for Windows they call GitHub for Windows; it authenticates via GitHub account, and although it usually uses HTTPS remotes for local repositories it creates, if you tell it to use an existing local repository that has an SSH remote on GitHub, it will use your GitHub credentials to set up an SSH key on the GitHub account for itself. But where does it keep the SSH key in the filesystem?
推荐答案
%HOMEDRIVE%%HOMEPATH%\.ssh\id_rsa.pub
是关键所在.
这篇关于Windows 版 GitHub 在哪里保存其 SSH 密钥?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!