diff options
author | Kai Ruemmler <kai.ruemmler@gmx.net> | 2005-11-07 09:23:59 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-07 13:28:31 -0800 |
commit | e66ab03fcfb508efbe2b73bafc7cf0ef16430378 (patch) | |
tree | 3ee0f7a3b1b89dd5d2c59d213b1463e1e414ecc4 /Documentation/howto/rebase-and-edit.txt | |
parent | 31b9755a655aa34373d8b39030e9a0f46ffa0078 (diff) | |
download | git-e66ab03fcfb508efbe2b73bafc7cf0ef16430378.tar.gz |
Documentation update: use git branch -d foo where applicable
This updates documentation to use git branch -d foo in favour of
rm .git/refs/heads/foo
Signed-off-by: Kai Ruemmler <kai.ruemmler@gmx.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/howto/rebase-and-edit.txt')
-rw-r--r-- | Documentation/howto/rebase-and-edit.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/howto/rebase-and-edit.txt b/Documentation/howto/rebase-and-edit.txt index 6cc1c7921f..646c55cc69 100644 --- a/Documentation/howto/rebase-and-edit.txt +++ b/Documentation/howto/rebase-and-edit.txt @@ -63,7 +63,7 @@ And then, you can just remove the broken branch if you decide you really don't want it: # remove 'broken' branch - rm .git/refs/heads/broken + git branch -d broken # Prune old objects if you're really really sure git prune |