delete git remote branch

This commit is contained in:
2025-10-23 01:18:22 +03:00
parent 969fa9b375
commit 4d7d274c46

View File

@@ -0,0 +1,18 @@
---
title: "❌ Git: Удалить ветку на сервере"
date: 2025-10-23T01:15:44+03:00
draft: false
tags: [git, tips]
---
Шаблон команды:
```bash
git push <remote_name> --delete <branch_name>
```
Например:
```bash
git push origin --delete testBranch
```