1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 12:45:59 +02:00

git-delete-branch: add page (#6011)

This commit is contained in:
CleanMachine1 2021-05-27 12:26:25 +01:00 committed by GitHub
parent 0ddefb9a9f
commit 331a54fdda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,13 @@
# git delete-branch
> Delete local and remote Git branches.
> Part of `git-extras`. If deleting the checked out branch, only the remote branch will be deleted.
> More information: <https://github.com/tj/git-extras/blob/master/Commands.md#git-delete-branch>.
- Delete a local and remote Git branch:
`git delete-branch {{branch_name}}`
- Delete multiple local and remote Git branches:
`git delete-branch {{branch_name1 branch_name2 ...}}`