使用しなくなったブランチ(ローカル)を削除します。
それが “git branch -d” コマンドになります。
$ git branch -d feature-directory
Deleted branch feature-directory (was xxxxxxx).
$
これでFEATURE-DIRECTORY(ローカルブランチ)が削除されます。
マージなどされておらずステータスがズレているとエラーが出力されます。
その状態でも良いならオプション”-D”で実行すると削除となります。
$ git branch -d feature-directory
error: The branch 'feature-directory' is not fully merged.
If you are sure you want to delete it, run 'git branch -D feature-directory'.
$
参考:
https://git-scm.com/book/ja/v2/
https://help.github.com/