(1)ターミナルを起動して、gitで管理しているディレクトリを開きます。
(2)gitをmasterに切り替えます。
(3)以下のCommandでブランチ一覧を表示します。
git branch
(4)削除する対象のブランチがあることを確認したら以下のCommandで削除を実行します。
git branch --delete ブランチ名
※ ▽ こんなエラーが出たりします。
error: The branch 'ブランチ名' is not fully merged. If you are sure you want to delete it, run 'git branch -D ブランチ名'.
(5)そうしたら以下のCommandで削除を実行します。
git branch ブランチ名