开始需要在github上创建仓库,安装github shell,
进入git shell
验证身份
ssh-keygen -C 'your@email.address' -t rsa(上面邮箱为自己邮箱)
根据提示按回车
会生成一个文件夹
其中.ssh文件
复制该文件下的id_rsa.pub中的内容
打开github账户设置的ssh keys
title随意,key栏粘贴刚才的秘钥
在git shell中测试一下
ssh -T your@email.com(上面邮箱为自己邮箱)
成功了会说
You've successfully authenticated~~
准备工作做好了,下面开始吧~
克隆仓库到本地
命令为 git clone https://github.com/huangzz1212/gameDemo(仓库名)
目录下会生成readme等文件
现在终于可以把自己的项目代码复制进去这个文件夹里了,和readme同级。
在进入git shell中
1.cd到本地根目录下
cd gameDemo(自己新建的库)
2.git init
3.git add flybird(自己代码的文件)
4.git coimmit -m 'flybird'(自己代码的文件)
5.git remoteadd origin https://github.com/huangzz1212/gameDemo(仓库名)
6.git pull origin master
7.git pull-u origin master