Skip to content

Commit 286b022

Browse files
committed
Use quotes - Single quotes not platform independent
1 parent da44a6c commit 286b022

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If you're only interested in looking at the 1.8.5 series, you can run this:
2626

2727
[source,console]
2828
----
29-
$ git tag -l 'v1.8.5*'
29+
$ git tag -l "v1.8.5*"
3030
v1.8.5
3131
v1.8.5-rc0
3232
v1.8.5-rc1
@@ -58,7 +58,7 @@ The easiest way is to specify `-a` when you run the `tag` command:(((git command
5858

5959
[source,console]
6060
----
61-
$ git tag -a v1.4 -m 'my version 1.4'
61+
$ git tag -a v1.4 -m "my version 1.4"
6262
$ git tag
6363
v0.1
6464
v1.3

0 commit comments

Comments
 (0)