From 61a81a76c09ed837704ac1f67f7eb8e31c4f9693 Mon Sep 17 00:00:00 2001 From: Sergei Vorobev Date: Fri, 22 Jul 2016 20:07:01 -0700 Subject: [PATCH] Fix links in powershell-repository-101.md --- docs/git/powershell-repository-101.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/git/powershell-repository-101.md b/docs/git/powershell-repository-101.md index 785385f78..99d40a91d 100644 --- a/docs/git/powershell-repository-101.md +++ b/docs/git/powershell-repository-101.md @@ -76,10 +76,10 @@ you will find it via **tags**. * Find the tag that corresponds to the release. * Use `git checkout ` to get this version. -**Note:** [checking out a tag][] will move the repo to a [DETACHED HEAD][] state. +**Note:** [checking out a tag][tag] will move the repo to a [DETACHED HEAD][HEAD] state. -[checking out tag]:https://git-scm.com/book/en/v2/Git-Basics-Tagging#Checking-out-Tags -[DETACHED HEAD]:https://www.git-tower.com/learn/git/faq/detached-head-when-checkout-commit +[tag]:https://git-scm.com/book/en/v2/Git-Basics-Tagging#Checking-out-Tags +[HEAD]:https://www.git-tower.com/learn/git/faq/detached-head-when-checkout-commit If you want to make changes, based on tag's version (i.e. a hotfix), checkout a new branch from this DETACHED HEAD state.