3
2

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

概要

  • 複数人で開発してて共通のコードベース利用したいとか、リリースブランチ作成したいとか
  • 今の今までぱっとやり方思いつかなかったが、色々探して試したところできたのでメモ

方法

  1. 最新のコードからbranchを切る(mainとかdevelopとか)
  2. 空コミットを用意する
  3. GitHub上でPR作成
  4. 他PRの向き先を3に変更する

空コミットの用意

$ git commit --allow-empty -m "Initialize integration branch"

最新のところから切るだけじゃ差分ができない = PRが作成できないため差分を作らなきゃとなり、一部だけ変更するのもよくわからんなーと思っていたが、こんな方法があるなんて知らなかった

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?