mirror of
https://github.com/git-for-windows/git.git
synced 2025-12-11 19:22:58 -06:00
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>
This commit is contained in:
parent
31b9755a65
commit
e66ab03fcf
@ -63,7 +63,7 @@ And then, you can just remove the broken branch if you decide you really
|
|||||||
don't want it:
|
don't want it:
|
||||||
|
|
||||||
# remove 'broken' branch
|
# remove 'broken' branch
|
||||||
rm .git/refs/heads/broken
|
git branch -d broken
|
||||||
|
|
||||||
# Prune old objects if you're really really sure
|
# Prune old objects if you're really really sure
|
||||||
git prune
|
git prune
|
||||||
|
|||||||
@ -153,7 +153,8 @@ Everything is in the good order. I do not need the temporary branch
|
|||||||
nor tag anymore, so remove them:
|
nor tag anymore, so remove them:
|
||||||
|
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
$ rm -f .git/refs/tags/pu-anchor .git/refs/heads/revert-c99
|
$ rm -f .git/refs/tags/pu-anchor
|
||||||
|
$ git branch -d revert-c99
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
It was an emergency fix, so we might as well merge it into the
|
It was an emergency fix, so we might as well merge it into the
|
||||||
|
|||||||
@ -166,7 +166,7 @@ output from:
|
|||||||
|
|
||||||
is empty. At this point the branch can be deleted:
|
is empty. At this point the branch can be deleted:
|
||||||
|
|
||||||
$ rm .git/refs/heads/branchname
|
$ git branch -d branchname
|
||||||
|
|
||||||
Some changes are so trivial that it is not necessary to create a separate
|
Some changes are so trivial that it is not necessary to create a separate
|
||||||
branch and then merge into each of the test and release branches. For
|
branch and then merge into each of the test and release branches. For
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user