0
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?

Vercelで本番ブランチをmainブランチ以外に変更する方法

Last updated at Posted at 2024-07-19

目的

デフォルトの本番ブランチ main から、別途作成した本番用ブランチ(例: prd)がデプロイされるように変更したい。

手順

手順1: 本番ブランチのブランチ名を変更する

  1. 上部メニューの「Settings」をクリック
  2. Project Settingsメニューの「Git」をクリック
  3. 「Production Branch」のBranch Nameの値を、設定したいブランチ名に変更し入力する(例: [変更前]main → [変更後]prd)
  4. 「Save」ボタンをクリック

8b577b978493195e9417-1.png

手順2: ドメイン設定のブランチを変更する

  1. Project Settingsメニューの「Domains」をクリックし、<project>.vercel.appの「Edit」ボタンをクリック
    8b577b978493195e9417-2.png
  2. Git Branchのプルダウンから、先ほど変更したブランチをクリックする(例: [変更前]main → [変更後]prd)
    8b577b978493195e9417-3.png
  3. 「Save」ボタンをクリック
    8b577b978493195e9417-4.png

手順3: (任意)確認のためデプロイする

先ほど変更したブランチから、空のコミットをプッシュする(※GitリポジトリでCI/CD設定済みの前提)などの方法でデプロイする。
デプロイ完了後、<project>.vercel.app にアクセスし、確認して完了。

# 空のコミット & プッシュ 例
git commit --allow-empty -m "test production deploy" && git push
0
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
0
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?