github入门教程

Posted 小六子的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了github入门教程相关的知识,希望对你有一定的参考价值。

1.下载git windows 客户端

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

 

2.配置github

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

首先在本地创建ssh key;

$ ssh-keygen -t rsa -C "[email protected]"

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

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

 

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

$ ssh -T [email protected].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 "[email protected]"

如:
$ git config --global user.name "xiaoliuzi" $ git config --global user.email "[email protected]"

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

执行git初始化操作
$git init



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

$ git remote add origin [email protected].com:yourName/yourRepo.git


如:
$ git remote add origin [email protected]: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入门教程的主要内容,如果未能解决你的问题,请参考以下文章

PHP代码-psysh调试代码片段工具

「游戏引擎 浅入浅出」4.3 片段着色器

「游戏引擎 浅入浅出」4.3 片段着色器

「游戏引擎 浅入浅出」4.3 片段着色器

「游戏引擎 浅入浅出」4.3 片段着色器

效率神奇Github丧心病狂的9个狠招