Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 317 Bytes

git-delete-branch.md

File metadata and controls

15 lines (8 loc) · 317 Bytes

Delete a branch from remote git repository

This command is used for deleting a branch from remote

git push origin --delete <branch_name>

  • branch_name: Branch name which needs to be deleted
Example:

git push origin --delete 324ed3

Related