LoginSignup
377
309

More than 5 years have passed since last update.

githubでブランチ名を変更する(ローカル/リモート)

Posted at

githubでブランチ名を変更しリモートに反映させる手順

ブランチ名をhogeからfugaに変更する

1.ローカルのブランチ名を変更する

terminal
$ git branch -m hoge fuga

※現在使用しているブランチ名を変更する場合は下記でOK

terminal
$ git branch -m fuga

2.リモートのブランチを削除

terminal
$ git push origin :hoge

3.ブランチ名を変更したローカルブランチをプッシュ

terminal
$ git push origin fuga
377
309
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
377
309