标签:
首先下载git
git链接
打开”Git”->“Git Bash”,输入:
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
$ mkdir learngit
$ cd learngit
$ pwd
/Users/michael/learngit
用studio创建新项目
在oschina上创建repository
$ git init
此时项目文件夹下生成git子文件夹,隐藏的。
添加忽略文件,第五行,忽略ide的文件
加入git并提交
git add .
此处有坑,add后面有个点,并且之间有空格。。。空格
- 没提示信心
$ git commit -am "init"
$ git remote add origin git@git.oschina.net:a_si/Git-Text.git
$ git push -u origin master
明天再写
上次写到我们的项目已经推到远程仓库了,那么我们开始使用git flow进行分支开发与版本管理吧
- 首先进入上次的项目目录。
初始化git flow
git flow init
git flow 会帮你自动生成develop分支,用于开发使用
提交developer到远程仓库
$ git push origin develop
$ git flow feature start new-1.0
在new-1.0分支更改代码,写需求
此需求需要待定,要保留开发代码,暂时放弃此需求开发,回到开发前的代码继续开发
$ git commit -am"暂停此需求"
$ git checkout develop
看到没,我们的代码又回到develop分支的原来状态了。而我们的new-1,0分支还在
$ git flow feature start new-2.0
在new-2.0分支更改代码,写需求
此需求需要写完,回到原来develop分支继续开发
$ git commit -am "完成需求"
$ git flow feature finish
标签:
原文地址:http://blog.csdn.net/qq_19544445/article/details/51333714