github建立仓库
Posted yaya-003
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github建立仓库相关的知识,希望对你有一定的参考价值。
安装git,
1.登陆上github
2.New repository
3.填写资料
4.在文件夹下,git bash here
git config --global user.name "gitname"
git config --global user.email "gitemail"
$ ssh-keygen -t rsa -C"gitemail"(三次回车)
5.在本地用户文件夹下生成.ssh的文件夹,打开id_rsa.pub文件夹复制里面的内容
6.在github中新建一个ssh KEY(粘贴上一步复制的内容)
7.回到git bsh here:ssh -T git@github.com
8.克隆github上的仓库
git clone 仓库地址 例如:
git clone https://github.com/yatingFeng/supermall.git
ok!!!!!!!!!!!
9.
以上是关于github建立仓库的主要内容,如果未能解决你的问题,请参考以下文章