「Mac使用GitHub」

1.安装Git

在命令行输入 brew install git

2.检查是否有SSH keys

①输入 cd ~/.ssh
②输入 ls 查看文件夹内详情,如果看到以下三个文件:

id_rsa id_rsa.pub known_hosts

那么就进行备份:
输入 mkdir key_backup 创建一个新文件夹用于保存旧的id_rsa
输入 cp id_rsa* key_backup 移动旧的id_rsa至key_backup
输入 rm id_rsa* 删除旧的id_rsa

3.创建新的

①输入 ssh-keygen -t rsa -C "[email protected]" 注意邮箱前后要输入"",显示以下:

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

②按回车enter,显示以下:

Enter passphrase (empty for no passphrase): 

③再按回车enter,显示以下:

Enter same passphrase again: 

④再按回车enter,显示以下:

Your identification has been saved in /Users/username/.ssh/id_rsa.
Your public key has been saved in /Users/username/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:******************************************* [email protected]
The key's randomart image is:
+---[RSA 3072]----+
|      E          |
|     o o .       |
|      + . . .    |
|     o     . ooo.|
|      o.S= ooo.=+|
|     o o= O.o . *|
|      +o.O =.= ..|
|     o..= Bo= .  |
|    .o+. oo+.    |
+----[SHA256]-----+

⑤在GitHub上添加你的SSH key
「Mac使用GitHub」_第1张图片
「Mac使用GitHub」_第2张图片
Title:[email protected]
Key:输入 cat id_rsa.pub 打开生成的id_rsa.pub文件,全部都复制粘贴过来。
就完成啦

4.验证

①输入 ssh -T [email protected] ,显示以下:

The authenticity of host 'github.com (13.250.177.223)' can't be established.
RSA key fingerprint is SHA256:*******************************************.
Are you sure you want to continue connecting (yes/no/[fingerprint])?

②输入 yes ,显示以下:

Warning: Permanently added 'github.com,13.250.177.223' (RSA) to the list of known hosts.

5.设置用户名和邮箱

输入 git config --global user.name "your name"
输入 git config --global user.email "[email protected]"

6.Create a new repository

「Mac使用GitHub」_第3张图片
填写Repository name,即可完成创建。

7.使用Git在本地创建一个项目

①输入 mkdir ~/HelloWorld 创建一个项目叫HelloWorld
②输入 cd ~/HelloWorld 进入这个文件夹
③输入 git init 初始化这个文件夹,显示以下:

已初始化空的 Git 仓库于 /Users/username/HelloWorld/.git/

④输入 touch README
⑤输入 git add README.md 更新README文件
⑥输入 git commit -m "first commit" 提交更新,并注释信息“first commit”

8.将本地的PUSH到GitHub上

①输入 git remote add origin https://github.com/xxxxx/xxxxx.git 即下图第二个框内容
「Mac使用GitHub」_第4张图片
②输入 git push -u origin master master是你要推送到的分支

9.从GitHub中PULL到本地

输入 git pull origin

各种大杂烩,侵删~

你可能感兴趣的:(github)