Mac使用 Git和 Github 连接

记录整理下怎么在 MacBook 上使用 Git 连接 Github。

Git 的安装有几个方式:

  1. 源码安装:

    Git 官网下载地址 for Mac

  2. XCode自带:

    XCode 自带 Git 程序,但是因为权限问题,不建议使用。

  3. Homebrew 安装:

    这个是最简便的方式,如果 MacBook 安装了 Homebrew,那么安装 Git 就一个命令

    1
    $ brew install git

创建 SSH KEY

按照提示输入以下信息:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 $ ssh-keygen -t rsa -C "[email protected]" 
#记得输入你的github账号的邮箱
#会输出下面语句

$ Generating public/private rsa key pair. Enter file in which to save thekeys (/Users/your_user_directory/.ssh/id_rsa):

# 这里需要按下 enter 键就好

#按下 enter 之后,又会出现下面的提示:

#输入回车后提示输入一个类似于密码的自定义的通行证号,如果直接回车则为空

$Enter passphrase(empty for no passphrase):

#提示重新输入以便确认输入是否正确

$Enter same passphraseagain:

#随后,你会收到一大串的提示,大概的意思是告诉你创建好了 id_rsa 和 id_rsa.pub 文件。

在 Github 上添加 SSH KEY

  1. 在Github中添加ssh(如图示):
  2. 登陆Github,选择Account Settings–>SSH Keys 添加ssh
  3. Title:xxxxx@xxxx.com
  4. Key:打开你生成的id_rsa.pub文件,将其中内容拷贝至此。创建成功会有相应的提示。

Github

验证连接

1
$ ssh -T [email protected]

第一次会出现这个信息:

1
2
3
The authenticity of host 'github.com (207.97.227.239)' can't be established. 
RSA key fingerprint is XXXXXXXXX
Are you sure you want to continue connecting (yes/no)?

输入 yes:

1
Hi username! You've successfully authenticated, but GitHub does not provide shell access.

配置个人信息

设置本地 Git 的个人信息,来方便Git 进行 commit 的追踪管理

1
2
$git config --global user.name "your real name"
$git config --global user.email "[email protected]"

Comments

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×