git remote branch in origin

This commit is contained in:
Alexander Popov 2022-09-16 03:51:46 +03:00
parent 8af1e2e498
commit a190766973
Signed by: iiiypuk
GPG Key ID: D8C9B59A9F04A70C
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
---
title: "Git: Удалить ветку на сервере"
date: 2022-09-16T03:48:34+03:00
draft: false
tags: [git, tips]
---
Для удаления определённой ветки на сервере Git, необходимо выполнить команду:
```sh
git push <remote_name> --delete <branch_name>
```
Например:
```text
git push origin --delete gh-pages
remote: . Processing 1 references
remote: Processed 1 references in total
To git.a2s.su:iiiypuk/minecraft-launcher.git
- [deleted] gh-pages
```