From e3d42e6fee0065dd8b426c628c338036823e8cd1 Mon Sep 17 00:00:00 2001 From: networm Date: Sun, 7 Jun 2020 13:38:58 +0800 Subject: [PATCH] Fix typo in 2.6 tagging Close #411 --- 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 92191fbd..bbfe08e9 100644 --- a/book/02-git-basics/sections/tagging.asc +++ b/book/02-git-basics/sections/tagging.asc @@ -262,7 +262,7 @@ $ git push origin --delete ==== 检出标签 如果你想查看某个标签所指向的文件版本,可以使用 `git checkout` 命令, -虽然这会使你的仓库处于“分离头指针(detacthed HEAD)”的状态——这个状态有些不好的副作用: +虽然这会使你的仓库处于“分离头指针(detached HEAD)”的状态——这个状态有些不好的副作用: [source,console] ----