diff --git a/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md b/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md
index efe3ce49c6..fe81a4601c 100644
--- a/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md
+++ b/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md
@@ -87,13 +87,13 @@ If you want to mirror a repository in another location, including getting update
$ cd repository-to-mirror
$ git remote set-url --push origin https://{% data variables.command_line.codeblock %}/exampleuser/mirrored
```
+As with a bare clone, a mirrored clone includes all remote branches and tags, but all local references will be overwritten each time you fetch, so it will always be the same as the original repository. Setting the URL for pushes simplifies pushing to your mirror.
-As with a bare clone, a mirrored clone includes all remote branches and tags, but all local references will be overwritten each time you fetch, so it will always be the same as the original repository. Setting the URL for pushes simplifies pushing to your mirror. To update your mirror, fetch updates and push.
-
-```shell
-$ git fetch -p origin
-$ git push --mirror
-```
+4. To update your mirror, fetch updates and push.
+ ```shell
+ $ git fetch -p origin
+ $ git push --mirror
+ ```
{% ifversion fpt or ghec %}
## Further reading