码迷,mamicode.com
首页 > 其他好文 > 详细

Github使用

时间:2014-09-09 11:46:18      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   使用   ar   for   文件   div   

1.注册github账号

----要想使用github第一步当然是注册github账号了。之后就可以创建仓库了(免费用户只能建公共仓库),Create a New Repository,填好名称后Create,之后会出现一些仓库的配置信息,这也是一个git的简单教程。

2.安装GitHub For Windows

3.在本地创建ssh key

ssh-keygen -t rsa -C "your_email@youremail.com"  

后面的your_email@youremail.com改为你的邮箱,之后会要求确认路径和输入密码,我们这使用默认的一路回车就行。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。

回到github,进入Account Settings,左边选择SSH Keys,Add SSH Key,title随便填,粘贴key。为了验证是否成功,在git bash下输入:

ssh -T git@github.com  

成功后会输出

Hi username! Youve successfully authenticated, but GitHub does not provide shell access.

这就表示已成功连上github。

接下来我们要做的就是把本地仓库传到github上去,在此之前还需要设置username和email,因为github每次commit都会记录他们。

4.创建仓库

可以用客户端创建,也可以在网页上创建

 

Github使用

标签:style   blog   color   os   使用   ar   for   文件   div   

原文地址:http://www.cnblogs.com/code-beautiful/p/3961780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!