1.注册账户以及创建仓库
注册github账号了。之后就可以创建仓库了(免费用户只能建公共仓库),Create a New Repository,填好名称后Create,之后会出现一些仓库的配置信息,这也是一个git的简单教程。
2.安装客户端msysgit
装完msysgit后右键鼠标会多出一些选项来,在本地仓库里右键选择Git Init Here,会多出来一个.git文件夹,这就表示本地git创建成功。右键Git Bash进入git命令行,为了把本地的仓库传到github,还需要配置ssh key。
3.配置Git
首先在本地创建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
如果是第一次的会提示是否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 bash,添加远程地址:
$ git remote add origin git@github.com:yourName/yourRepo.git
4.提交上传
接下来在本地仓库里添加一些文件,比如README,
$ git add README $ git commit -m "first commit"
上传到github:
$ git push origin master
5.给github的repository添加Collaborators
添加完collaborators之后,其他的小伙伴就可以你的repository进行下载、修改等操作。
6.下载github上的repository
$ git clone https://github.com/bihai0627/test.git
下载完文件之后,可以进行添加文件、修改文件等操作,完成之后进行上传和提交
$ git add -A$ git commit -m "my work"$ git push origin master
之后输入小伙伴自己的github账号即可完成上传和提交
7.更新代码
当别的小伙伴完成他们的操作之后,需要更新原来的代码,
$ git fetch origin$ git merge origin/master
这样就可完成更新操作。
PS:本人才刚开学习使用github,还存在着很多的疑问,以上内容参考了以下网址:
http://wuyuans.com/2012/05/github-simple-tutorial/
http://tech.marsw.tw/blog/2013/08/17/git-notes-github-n-person-cooperation-settings/
http://www.shizuwu.cn/post/669.html
谢谢各位的分享