Created
April 12, 2012 03:10
-
-
Save taka328w/2364403 to your computer and use it in GitHub Desktop.
【案】gitを使ったレビュー レビューを受ける人
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. 作業完了したブランチをレビュー用リモートブランチへ送る | |
git co BRANCH_NAME | |
git push origin BRANCH_NAME:review/NAME/BRANCH_NAME | |
※NAMEの部分はユーザ名 | |
2. レビューしてねと伝える | |
review/NAME/BRANCH_NAMEをレビューして下さいと伝える | |
3. レビュー結果を受け取る | |
・メール | |
・直接リモートブランチに修正をするかも!? | |
(1) レビューが駄目だった場合 | |
・ローカルのBRANCH_NAMEで指摘内容の修正 | |
・同じリモートリポジトリに送る | |
git push origin BRANCH_NAME:review/NAME/BRANCH_NAME | |
(2) レビューがOKだった場合 | |
・リモートブランチを削除 | |
git push origin :review/NAME/BRANCH_NAME | |
merge -> push -> リリース |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment