From d163f0693a52b3b714abd85bf6d6b6d0e7db0dea Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Fri, 28 Aug 2020 12:27:03 +0200 Subject: [PATCH] Add v before number for consistency Fixes #852 --- book/02-git-basics/sections/tagging.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/02-git-basics/sections/tagging.asc b/book/02-git-basics/sections/tagging.asc index 30c323938..d1b3c243c 100644 --- a/book/02-git-basics/sections/tagging.asc +++ b/book/02-git-basics/sections/tagging.asc @@ -276,7 +276,7 @@ do so (now or later) by using -b with the checkout command again. Example: HEAD is now at 99ada87... Merge pull request #89 from schacon/appendix-final -$ git checkout 2.0-beta-0.1 +$ git checkout v2.0-beta-0.1 Previous HEAD position was 99ada87... Merge pull request #89 from schacon/appendix-final HEAD is now at df3f601... Add atlas.json and cover image ----