Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 mac 终端从我的 mac 计算机中删除github_rsa.pub和SSH 证书?id_rsa.pub
github_rsa.pub
id_rsa.pub
根据他们所在的位置:
rm github_rsa.pub
和
rm id_rsa.pub
如果它们位于默认位置,那么您可以执行
rm ~/.ssh/github_rsa.pub
rm ~/.ssh/id_rsa.pub
然而,这可能已经在其他地方得到了回答。