GitHub8(ブランチの削除)

その7から続きます。

現在のリモートブランチを確認

git branch –remote

origin/HEAD -> origin/master
origin/feature-hello ←このブランチを削除したい
origin/master

リモートブランチの削除

git push –delete origin feature-hello

パスフレーズを尋ねられるのでコマンドする
git branch –remote

ローカルブランチを削除

git branch
feature-hello ←これを削除したい
* master

git branch –delete feature-hello
git branch
* master
↑削除されている

ローカルとリモートの両方のブランチ一覧を確認する

git branch -a
* master
remotes/origin/HEAD -> origin/master
remotes/origin/master
↑両方見られる。

その9に続きます

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です