- ローカル上で branch名変更する。
$ git branch -m <変更前のブランチ名> <変更後のブランチ名>
2. リモートの対象branchを削除する。
$ git push --delete origin <変更前のブランチ名>
3. 名称を変更したローカルbranchをプッシュする。
$ git push origin <変更後のブランチ名>
Go to list of users who liked
More than 1 year has passed since last update.
$ git branch -m <変更前のブランチ名> <変更後のブランチ名>
2. リモートの対象branchを削除する。
$ git push --delete origin <変更前のブランチ名>
3. 名称を変更したローカルbranchをプッシュする。
$ git push origin <変更後のブランチ名>
Register as a new user and use Qiita more conveniently
Go to list of users who liked