Skip to content

Commit 377f4cd

Browse files
🏷️ day 32 - delete tags
1 parent 505097d commit 377f4cd

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

Day 32/README.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Day 32
2+
3+
Today we will learn to delete tags.
4+
5+
## Problem Statement:
6+
7+
You added way too many tags? No prob! Delete them with <br>
8+
`git tag -d ‹tag-name>`
9+
10+
Remove all tags in this repo!
11+
12+
### Files:
13+
- feature-list
14+
15+
16+
### Questions:
17+
- Did you remove all tags?
18+
19+
<div align="center">
20+
<img src="https://github.com/ArnabKumarRoy02/Learn-git/assets/86621483/ff6a7b98-f585-4061-916b-1959d1cc5b82" width=400>
21+
<p>Description of the problem.</p>
22+
</div>
23+
24+
## Solution:
25+
26+
1. Delete all the tags one-by-one.
27+
```bash
28+
git tag -d v1
29+
git tag -d v2
30+
git tag -d v3
31+
```
32+
33+
or
34+
35+
2. Delete all the tags at once.
36+
```bash
37+
git tag -d v1 v2 v3
38+
```
39+
40+
<div align="center">
41+
<img src="https://github.com/ArnabKumarRoy02/Learn-git/assets/86621483/b5b832a6-d019-4a8c-bd77-4a6d956b33db" width=400>
42+
<p>Description of the solution.</p>
43+
</div>

0 commit comments

Comments
 (0)