最初にpushしたbranchがdefaultのbrunchになるらしい(masterが必ずしもdefaultではない)いつもgit push origin masterしていたので適当なbranchを切ったらdefaultのbranchがそれになって困った…。
#githubの説明より…
The default branch is considered the “base” branch in your repository, against which all pull requests and code commits are automatically made, unless you specify a different branch.
デフォルトのブランチはリポジトリ内の「ベース」ブランチと見なされ、別のブランチを指定しない限り、すべてのプルリクエストとコードコミットが自動的に行われます。
…とのこと。意図しないbrunchがdefaultになったら管理権限になって設定を変えておいたほうが今後やりやすいと思われる。
変更方法はレポジトリの管理者権限を持つユーザになってsetting->branchから変更することができるようです。
参考URL:https://docs.github.com/ja/github/administering-a-repository/setting-the-default-branch
コメント