一、Homebrew简介、安装以及git安装
Homebrew简称brew,是Mac系统上软件包的管理工具,能在Mac中方便的安装软件和卸载软件。
在安装Homebrew之前需要先安装开发工具xcode,否则安装失败
在命令行里执行以下命令即可安装Homebrew:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
如果这个命令执行后返回400,隔一段时间重新执行即可。
Home-brew在github上的地址:
https://github.com/Homebrew/homebrew
Homebrew的几个命令:
brew search git 搜索git命令
brew install git 安装git命令
brew remove git 卸载git命令
查看git的安装路径
which git
这里会得到一个地址是/usr/bin/git(我得到的是这个路径,网上有说得到/usr/local/bin/git)
到这里表示git已经安装完了
二、配置SSH连接
1、第一个要配置的是你个人的用户名称和电子邮件地址。这两条配置很重要,每次 Git 提交时都会引用这两条信息,说明是谁提交了更新,所以会随更新内容一起被永久纳入历史记录:
git config --global user.name "wei"
git config --global user.email "wonder@qq.com"
2、配置SSH连接,命令:
ls -a
cd .ssh
ssh-keygen -t rsa -C your@qq.com (后面是在git上注册的邮箱)
由于本人的系统遭遇过重装(EI Capitan),所以之前的.ssh就消失了,重新生成的方法是:
ssh-keygen -b 1024 -t rsa
-b bits
指定密钥长度。对于RSA密钥,最小要求768位,默认是2048位。DSA密钥必须恰好是1024位(FIPS186-2 标准的要求)
-t type
指定要创建的密钥类型。可以使用:"rsa1"(SSH-1) "rsa"(SSH-2)"dsa"(SSH-2)
-C comment
提供一个新注释
-c 要求修改私钥和公钥文件中的注释。本选项只支持 RSA1 密钥。
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/wo/.ssh/id_rsa): id_rsa(默认在wo下面,如果需要在.ssh下面,这里应该写/Users/wo/.ssh/id_rsa)
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in id_rsa.
Your public key has been saved in id_rsa.pub.
The key fingerprint is:
SHA256:3g0NjwWLgqp9/GAJq9UsSih4kjk wei@bogon
The key's randomart image is:
+---[RSA 1024]----+
|.o . .o |
|..o = o..o + |
|.ooo. + o* . |
|.o+... o. o |
+----[SHA256]-----+
3、添加密钥到ssh-agent
确保 ssh-agent 是可用的。ssh-agent是一种控制用来保存公钥身份验证所使用的私钥的程序,其实ssh-agent就是一个密钥管理器,运行ssh-agent以后,使用ssh-add将私钥交给ssh-agent保管,其他程序需要身份验证的时候可以将验证申请交给ssh-agent来完成整个认证过程。
在命令行里执行:eval "$(ssh-agent -s)"
添加生成的SSH key到ssh-agent
ssh-add ~/.ssh/id_rsa
查看密钥列表
ssh-add -l
第三条不执行可能会出现第五条里的问题。
4、复制公钥到剪贴板上
pbcopy < id_rsa.pub(公钥的路径),或者使用vim id_rsa.pub或者cat id_rsa.pub手动复制公钥,然后登录github,打开Account Setting,里面有一项SSH And GPG Keys,把id_rsa.pub里的内容粘贴过来。
5、ssh -T git@github.com验证是否能成功连接github,如果出现The authenticity of host 'github.com (192.168.250.112)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXpRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.168.250.112' (RSA) to the list of known hosts.
Permission denied (publicly).
出现以上情况需要执行命令:ssh-add -l(使用此命令查看密钥列表)密钥列表为空,所以要添加我的密钥,命令:
Permission denied(参考地址) Permission denied2(参考链接)
ssh-agent bash
bash-3.2$ ssh-add ~/.ssh/id_rsa
Identity added: /Users/wo/.ssh/id_rsa (/Users/wo/.ssh/id_rsa)
再次执行ssh-add -l
结果:2048 SHA256:QtpHEoSDVoMwghEEG0E5hjgtI60b/oi4 id_rsa (RSA)
再次执行ssh -T git@github.com:
Hi lover! You've successfully authenticated, but GitHub does not provide shell access.
至此SSH配置完毕。