diff --git a/content/get-started/using-git/getting-changes-from-a-remote-repository.md b/content/get-started/using-git/getting-changes-from-a-remote-repository.md
index 0f6a6df2b4..209c0beb0e 100644
--- a/content/get-started/using-git/getting-changes-from-a-remote-repository.md
+++ b/content/get-started/using-git/getting-changes-from-a-remote-repository.md
@@ -77,7 +77,7 @@ $ git pull remotename branchname
Because `pull` performs a merge on the retrieved changes, you should ensure that
your local work is committed before running the `pull` command. If you run into
-[a merge conflict](/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line
+[a merge conflict](/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line)
you cannot resolve, or if you decide to quit the merge, you can use `git merge --abort`
to take the branch back to where it was in before you pulled.