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?

More than 3 years have passed since last update.

Herokuのアプリを別アカウントに移行するには

Last updated at Posted at 2021-05-25

タイトルの作業自体は上記記事を参考にしてうまくいきましたが(感謝!)、コマンドが古くなっている箇所もあったので、今回の私の手順をまとめておきます。

移行元アカウントでログイン

$ heroku login

移行したいアプリのディレクトリに移動

$ heroku git:clone -a <移行したいアプリ>
$ cd <移行したいアプリ>

コラボレーターを追加

$ heroku access:add <移行先アカウント>

アプリのオーナーを移行

$ heroku apps:transfer <移行先アカウント> --app <移行したいアプリ>

コラボレーターを削除

$ heroku access:remove <移行元アカウント>

元のディレクトリに戻る

$ cd ..

以上です!

参考

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?