Created
April 12, 2012 03:11
-
-
Save taka328w/2364411 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. review/NAME/BRANCH_NAMEをレビューして下さいと依頼を受ける | |
2. ローカルのブランチへ取得 | |
git co -b review origin/review/NAME/BRANCH_NAME | |
3. 差分をチェック | |
(1) メールで指摘する | |
(2) 修正したよ!って言われた | |
git pull | |
4. レビューが完了してリモートリポジトリが消されたら | |
git remote prune origin --dry-run | |
=> 削除されるリモートブランチの確認 | |
git remote prune origin | |
git co master | |
git br -D review |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment