Code

Merge branch 'maint'
[git.git] / Documentation / git-branch.txt
index bb6b57dc2d00e38fc1d0128fe02fc771a1f83086..33bc31b0d4491169cdbfb06f3dc6c42ec84b1365 100644 (file)
@@ -130,12 +130,12 @@ Delete unneeded branch::
 ------------
 $ git clone git://git.kernel.org/.../git.git my.git
 $ cd my.git
-$ git branch -d -r todo html man   <1>
-$ git branch -D test               <2>
+$ git branch -d -r origin/todo origin/html origin/man   <1>
+$ git branch -D test                                    <2>
 ------------
 +
-<1> delete remote-tracking branches "todo", "html", "man"
-<2> delete "test" branch even if the "master" branch does not have all
+<1> Delete remote-tracking branches "todo", "html", "man"
+<2> Delete "test" branch even if the "master" branch does not have all
 commits from test branch.