摘要:
官方帮助文档: https://help.github.com/articles/create-a-repo登录github,点New Repository.如下面图所示,新建一个文件,初始化本地库git init,如下:Step 1: Create the README fileIn the prompt, type the following code:mkdir ~/Hello-World# Creates a directory for your project called "Hello-World" in your user directorycd ~/Hell
阅读全文
posted @ 2013-03-11 11:15
游鱼
阅读(11222)
推荐(0)
编辑
摘要:
帮助参考官方文档:https://help.github.com/articles/fork-a-repo1.A账号登录github上,参与B账号的项目,在B账号网页上点fork2.把项目clone到本地 git clone https://github.com/A/xxx.git3.添加上游远端GIT git remote add upstream https://github.com/B/xxx.git upstream可以随便取别名4.取远端最新代码,保证自己的代码是最新,免得跟别人的有冲突 git fetch upstream5.合并到本地 git merge ...
阅读全文
posted @ 2013-03-11 10:59
游鱼
阅读(1174)
推荐(0)
编辑
摘要:
git,一个非常强大的版本管理工具。Github则是一个基于Git的日益流行的开源项目托管库。Git与svn的最大区别是,它的使用流程不需要联机,可以先将对代码的修改,评论,保存在本机。等上网之后,再实时推送过去。同时它创建分支与合并分支更容易,推送速度也更快,配合Github提交需求也更容易。Git全局设置git config --global user.name "Your Name"git config --global user.email youremail@email.com将Git项目与Github建立联系mkdir yourgithubprojectcd y
阅读全文
posted @ 2013-03-11 10:51
游鱼
阅读(231)
推荐(0)
编辑