Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 317 Bytes

delete_local_and_remote_branch.md

File metadata and controls

15 lines (10 loc) · 317 Bytes

Delete local and remote branch

Sometimes you want a branch to go away completely

# local
$ git branch -d <branch_name>

# remote
$ git push origin --delete <branch_name>

References