Skip to content

Commit 681583f

Browse files
authored
Update tagging.asc
1 parent 77307b2 commit 681583f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

book/02-git-basics/sections/tagging.asc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,15 +219,17 @@ Now, when someone else clones or pulls from your repository, they will get all y
219219

220220
==== Deleting Tags
221221

222-
To delete a tag on your local repository, you can use `git tag -d <tagname>`. For example, we could remove our lightweight tag above as follows:
222+
To delete a tag on your local repository, you can use `git tag -d <tagname>`.
223+
For example, we could remove our lightweight tag above as follows:
223224

224225
[source,console]
225226
----
226227
$ git tag -d v1.4-lw
227228
Deleted tag 'v1.4-lw' (was e7d5add)
228229
----
229230

230-
Note that this does not remove the tag from any remote servers. In order to update any remotes, you must use `git push <remote> :refs/tags/<tagname>`:
231+
Note that this does not remove the tag from any remote servers.
232+
In order to update any remotes, you must use `git push <remote> :refs/tags/<tagname>`:
231233

232234
[source,console]
233235
----

0 commit comments

Comments
 (0)