aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-branch.txt
diff options
context:
space:
mode:
authorFrancis Moreau <francis.moro@gmail.com>2007-07-16 13:38:47 +0200
committerJunio C Hamano <gitster@pobox.com>2007-07-16 21:34:44 -0700
commit33b1f3d54406dce2cc9cbed35993e55829a94626 (patch)
tree371466161375809a93e8b32f1ea1385f2007b779 /Documentation/git-branch.txt
parent29633bb91c7bcff31ff3bb59378709e3e3ef627d (diff)
downloadgit-33b1f3d54406dce2cc9cbed35993e55829a94626.tar.gz
Fix git-branch documentation when using remote refs
Signed-off-by: Francis Moreau <francis.moro@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-branch.txt')
-rw-r--r--Documentation/git-branch.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-branch.txt b/Documentation/git-branch.txt
index bb6b57dc2d..bc6aa88417 100644
--- a/Documentation/git-branch.txt
+++ b/Documentation/git-branch.txt
@@ -130,8 +130,8 @@ 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"