376
307

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 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
376
307
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
376
307

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?