summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorFrancis Moreau <francis.moro@gmail.com>2007-07-16 11:38:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-07-17 04:34:44 (GMT)
commit33b1f3d54406dce2cc9cbed35993e55829a94626 (patch)
tree371466161375809a93e8b32f1ea1385f2007b779 /Documentation
parent29633bb91c7bcff31ff3bb59378709e3e3ef627d (diff)
downloadgit-33b1f3d54406dce2cc9cbed35993e55829a94626.zip
git-33b1f3d54406dce2cc9cbed35993e55829a94626.tar.gz
git-33b1f3d54406dce2cc9cbed35993e55829a94626.tar.bz2
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')
-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 bb6b57d..bc6aa88 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"