Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 166 Bytes

File metadata and controls

12 lines (8 loc) · 166 Bytes

Git delete branch

Back

# Delete local branch
git branch -D <branch-name>

# Delete remote branch
git push -d <origin> <branch-name>