1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

レビューを出す時は、レビュワーが見やすいようにブランチを分けてください

Posted at

ブランチを分けてプルリクエスト(P-R)を作成する方法

背景
先輩にコードレビューを依頼した時に、「レビュワーが見やすいようにブランチを分けてください」と言われた。
でもどうすればいいんだ...困った!!💦


今回の例: hogeブランチのmainとの変更差分をfrontendディレクトリとbackendディレクトリで分ける

1. 新しいブランチを作成する

まず、mainブランチから新しいブランチを作成します。

git checkout main
git checkout -b hoge_frontend_changes_branch

2. frontendディレクトリの変更を取り込む

hogeブランチからfrontendディレクトリの変更を現在のブランチに取り込みます。

git checkout hoge -- frontend

3. 変更をステージングしてコミットする

取り込んだ変更をステージングし、コミットします。

git add frontend
git commit -m "Apply frontend changes from hoge"
git push origin hoge_frontend_changes_branch

これで、hogemainfrontendディレクトリ間の差分が、新しいブランチhoge_frontend_changes_branchに反映されました。
バックエンドも同様に行えばOKです!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?