diff options
author | Francis Moreau <francis.moro@gmail.com> | 2007-07-16 13:38:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-16 21:34:44 -0700 |
commit | 33b1f3d54406dce2cc9cbed35993e55829a94626 (patch) | |
tree | 371466161375809a93e8b32f1ea1385f2007b779 /Documentation/git-branch.txt | |
parent | 29633bb91c7bcff31ff3bb59378709e3e3ef627d (diff) | |
download | git-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.txt | 4 |
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" |