Files
30-seconds-of-code/snippets/delete-remote-branch.md
2022-03-22 12:02:38 +02:00

22 lines
451 B
Markdown

---
title: Delete a remote branch
tags: repository,branch
expertise: intermediate
author: maciv
firstSeen: 2021-04-08T19:42:01+03:00
lastUpdated: 2021-04-13T21:10:59+03:00
---
Deletes a remote branch.
- Use `git push -d <remote> <branch>` to delete the specified remote `<branch>` on the given `<remote>`.
```shell
git push -d <remote> <branch>
```
```shell
git checkout master
git push -d origin patch-1 # Deletes the `patch-1` remote branch
```