英文的,這篇會用指令帶著做一次。
http://alblue.bandlem.com/2011/11/git-tip-of-week-git-flow.html
中文的
http://ihower.tw/blog/archives/5140/
指令:
https://github.com/nvie/gitflow/wiki/Command-Line-Arguments
git flow 是一套可以幫助你快速完成並且符合 git 的優良用法的輔助工具
下面介紹基本用法。
- 當然是先安裝 git 和 git flow 啦。
brew install git git-flow - 複製一個 git repository 回來
git clone git@YOUR_HOST/YOUR_REPOS - cd 進去資料夾用預設設定做 init
cd YOUR_REPOS
git flow init -d - 開始寫功能abc
git flow feature start abc - 中間 git commit 好多次後,功能完成
此時 git flow 會幫你 merge 回 develop
git flow feature finish abc - 重複 5. 多次後,準備 release 1.0版
git flow release start v1.0 - 修修改改,準備上正式,此時 git flow 會幫你 merge 回 develop 和 master
git flow frelease finish v1.0
沒有留言:
張貼留言