http://liuzhijun.iteye.com/blog/1457207
1.注册账户以及创建仓库
要想使用github第一步当然是注册github账号了(www.github.com)。之后就可以创建仓库了(免费用户只能建公共仓库),Create a New Repository,填好名称后Create,之后会出现一些仓库的配置信息,这也是一个git的简单教程。
2.安装客户端msysgit
github是服务端,要想在自己电脑上使用git我们还需要一个git客户端,我这里选用msysgit,这个只是提供了git的核
心功能,而且是基于命令行的。如果想要图形界面的话只要在msysgit的基础上安装TortoiseGit即可。
装完msysgit后右键鼠标会多出一些选项来,在本地仓库里右键选择Git Init Here(或者命令行里输入git init命令),会多出来一个.git文件夹,这就表
示本地git创建成功。右键Git Bash进入git命令行,为了把本地的仓库传到github,还需要配置ssh key。
3.配置Git
首先在本地创建ssh key;
$ ssh-keygen -t rsa -C "[email protected]"
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA63rye64sOsj3wINkbDKcnEC78bG/Bg0DBS5Q6TZaEglIHTAhszWu/meFuUiUHGpKSzVc29DHeqaM7Jvad3zhcaceu5Bl1OFT7devC0Q3s5k+MYwdIwc/OiiF9MBia5iXxS6N2i7NSEoXjFiS2EcpXPmhn/pljxCIzOhJy2OB3i6VBJJBFYb2BL03/ozOqnI3hKk3o8hpop28UkzKr4f+ObPZDAyI9riXhbu5nnZDqQSzlwv3NDoZOOWm9t8NcEUIeMSSB5+FGY64CPGE85GUop1+2QcVpRBMd2CU3R4NtFllFYwnf9f3uGoXG6IBPBP2EO3KBGXaHj0v83rpqbt+2w== [email protected]
为了验证是否成功,在git bash下输入:
$ ssh -T [email protected]
You’ve successfully authenticated, but GitHub doesnot provide shell access 。
这就表示已成功连上github。
接下来我们要做的就是把本地仓库传到github上去,在此之前还需要设置username和email,因为github每次commit都
会记录他们。
$ git config --global user.name "your name" $ git config --global user.email "[email protected]"
$ git remote add origin [email protected]:yourName/yourRepo.git
4.提交、上传
接下来在本地仓库里添加一些文件,比如README,
$ git add README $ git commit -m "first commit"
$ git push origin master
这一步,产生了一些错误:
To [email protected]:lzjun/test.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to '[email protected]:lzjun/test.git' To prevent you from losing history, non-fast-forward updates were rejected Merge the remote changes (e.g. 'git pull') before pushing again. See the 'Note about fast-forwards' section of 'git push --help' for details.
可以先pull,同步一下代码:
git pull [email protected]:lzjun/importnewstat.git master