本文介绍Mac系统下如何在Github创建账户以及如何将本地代码上传到Github上。
步骤如下:
* 一、在Github上创建自己的账户
* 二、创建ssh
* 三、创建ssh key 连接到Github
* 四、在Github上创建自己的项目
* 五、将代码上传到Github
一、在Github上创建自己的账户
1. 打开Github官网:https://github.com
2. 注册账户:点击 sign up
3. 创建新仓库
点右上的➕号,选择New repository
Repository name:自己选择填写
Description:选填,对自己项目的描述
二、创建SSH
1. 打开mac终端上输入,设置本地ssh key
输入如下代码:ssh-keygen -t rsa -C "xxxx@xxx"
生成如下:
1) Overwrite可选y;
2) Enter passphrase可一直enter不设置,或可设置不少于4位数的密码
三、创建ssh key连接到Github上
1) 登录Github,右上角图表选择settings
2)进入Personal settings后,选择SSH and GPG keys选项
3)获取key
title:可自己命名,建议邮箱
获取key:
终端上输入:cd ~/.ssh/
在终端上显示key:cat id_rsa.pub
将key粘贴到Github的key上
4)验证是否成功
ssh -T git@github.com
5)克隆新建的项目到本地,输入如下命令:
git clone https://…… (https是Github对应仓库的地址)
6)把待上传的文件拖入到该文件夹
先确定文件的地址:pwd查看当前路径 (mac可以shift + command + g打开文件夹所在位置)
五、将代码上传到Github
终端上输入如下:
1) git init #初始化本地仓库
2) git add . #将代码提交
3) git commit -m "第一次更新"
4) git remote add origin + (clone use ssh)
5) git pull --rebase + (clone use ssh) #更新一下
6) git push -u origin master #提交