Git 批量删除本地以及远程分支
This commit is contained in:
parent
f9984ff0af
commit
79150385c0
@ -4,26 +4,27 @@ date: 2023-03-29
|
|||||||
tags: Git
|
tags: Git
|
||||||
---
|
---
|
||||||
|
|
||||||
1. 查看所有本地分支:
|
### 1. 查看所有本地分支:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git branch
|
git branch
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
2. 删除本地分支:
|
### 2. 删除本地分支:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git branch -D branch_name
|
git branch -D branch_name
|
||||||
```
|
```
|
||||||
其中,branch_name为要删除的分支名称。
|
其中,branch_name为要删除的分支名称。
|
||||||
|
|
||||||
3. 查看所有远程分支:
|
### 3. 查看所有远程分支:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ git branch -r
|
$ git branch -r
|
||||||
```
|
```
|
||||||
|
|
||||||
4. 删除远程分支:
|
### 4. 删除远程分支:
|
||||||
```shell
|
```shell
|
||||||
git push origin --delete branch_name
|
git push origin --delete branch_name
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user