mirror of
https://github.com/tj/git-extras.git
synced 2026-09-11 16:06:20 -04:00
Although Github reserves the 'visionmedia' user space(a visit to there will be redirected to 'tj'), it's better to rename the links from visionmedia/git-extras to tj/git-extras
36 lines
701 B
Markdown
36 lines
701 B
Markdown
git-delete-branch(1) -- Delete branches
|
|
=======================================
|
|
|
|
## SYNOPSIS
|
|
|
|
`git-delete-branch` <branchname>
|
|
|
|
## DESCRIPTION
|
|
|
|
Deletes local and remote branch named <branchname>.
|
|
Note that local deletion fails if the branch is checked out.
|
|
|
|
## OPTIONS
|
|
|
|
<branchname>
|
|
|
|
The name of the branch to delete.
|
|
If multiple branches are provided, then they will all be deleted.
|
|
|
|
## EXAMPLES
|
|
|
|
$ git delete-branch integration
|
|
$ git delete-branch integration bug/1234
|
|
|
|
## AUTHOR
|
|
|
|
Written by Tj Holowaychuk <<tj@vision-media.ca>>
|
|
|
|
## REPORTING BUGS
|
|
|
|
<<https://github.com/tj/git-extras/issues>>
|
|
|
|
## SEE ALSO
|
|
|
|
<<https://github.com/tj/git-extras>>
|