git remote branch in origin
This commit is contained in:
parent
8af1e2e498
commit
a190766973
23
content/posts/2022/git-remove-remote-branch.md
Normal file
23
content/posts/2022/git-remove-remote-branch.md
Normal 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
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user