From 63ef0ac13e411afbeaaf0ff1f279affbb8614188 Mon Sep 17 00:00:00 2001
From: Junio C Hamano With a -d or -D option, <branchname> will be deleted. You may
specify more than one branch for deletion. If the branch currently
-has a ref log then the ref log will also be deleted.
- List the remote-tracking branches.
+ List or delete (if used with -d) the remote-tracking branches.
-delete todo branch even if the "master" branch does not have all
+delete remote-tracking branches "todo", "html", "man"
+
+delete "test" branch even if the "master" branch does not have all
commits from todo branch.
DESCRIPTION
OPTIONS
$ git clone git://git.kernel.org/.../git.git my.git
$ cd my.git
-$ git branch -D todo (1)
+$ git branch -d -r todo html man (1)
+$ git branch -D test (2)