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

github入门教程

时间:2016-07-02 17:31:55      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

1.下载git windows 客户端

https://git-for-windows.github.io/

 

2.配置github

安装windows客户端以后,在里面输入如下命令

首先在本地创建ssh key;

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

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

回到github上,进入 Account Settings(账户配置),左边选择SSH Keys,Add SSH Key,title随便填,粘贴在你电脑上生成的key。

 

为了验证是否成功,在git bash下输入:

$ ssh -T git@github.com

如果是第一次的会提示是否continue,输入yes就会看到:You‘ve successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github。

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

$ git config --global user.name "your name"
$ git config --global user.email "your_email@youremail.com"

如:
$ git config --global user.name "xiaoliuzi" $ git config --global user.email "qingpengliu@qq.com"

创建github文件夹,并进入该文件夹
$mkdir github
$cd github

执行git初始化操作
$git init



进入要上传的仓库,右键git bash,添加远程地址:

$ git remote add origin git@github.com:yourName/yourRepo.git


如:
$ git remote add origin git@github.com:xiaoliuzi/GluttonousSnake.git  

后面的yourName和yourRepo表示你再github的用户名和刚才新建的仓库,加完之后进入.git,打开config,这里会多出一个remote "origin"内容,这就是刚才添加的远程地址,也可以直接修改config来配置远程地址。

 

 

将在github上创建好的repository上的代码,clone下来,并修改

 

$ git clone https://github.com/xiaoliuzi/GluttonousSnake.git

 

 

修改文件以后

$git add file_name.c

开始追踪

 

$git commit -m ‘some comments‘

然后提交修改

$git push origin master

备注,如果是Linux,可能需要加sudo。

 

3.创建新仓库

创建新文件夹,打开,然后执行 git init 以创建新的 git 仓库。

 

参考:

git pro

http://www.runoob.com/w3cnote/git-guide.html

github入门教程

标签:

原文地址:http://www.cnblogs.com/drfxiaoliuzi/p/5635600.html

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